mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-26 23:04:57 +00:00
code: tsx,nextjs,frontends (3 files)
This commit is contained in:
@@ -3,7 +3,7 @@
|
||||
import { forwardRef } from 'react'
|
||||
import { Avatar as MuiAvatar, AvatarProps as MuiAvatarProps } from '@mui/material'
|
||||
|
||||
export interface AvatarProps extends MuiAvatarProps {}
|
||||
export type AvatarProps = MuiAvatarProps
|
||||
|
||||
const Avatar = forwardRef<HTMLDivElement, AvatarProps>(
|
||||
({ sx, ...props }, ref) => {
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
import { forwardRef } from 'react'
|
||||
import { Skeleton as MuiSkeleton, SkeletonProps as MuiSkeletonProps } from '@mui/material'
|
||||
|
||||
export interface SkeletonProps extends MuiSkeletonProps {}
|
||||
export type SkeletonProps = MuiSkeletonProps
|
||||
|
||||
const Skeleton = forwardRef<HTMLSpanElement, SkeletonProps>(
|
||||
({ sx, ...props }, ref) => {
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
import { forwardRef } from 'react'
|
||||
import { Slider as MuiSlider, SliderProps as MuiSliderProps } from '@mui/material'
|
||||
|
||||
export interface SliderProps extends MuiSliderProps {}
|
||||
export type SliderProps = MuiSliderProps
|
||||
|
||||
const Slider = forwardRef<HTMLSpanElement, SliderProps>(
|
||||
({ sx, ...props }, ref) => {
|
||||
|
||||
Reference in New Issue
Block a user