import clsx from 'clsx'; import { FunctionComponent, SVGProps } from 'react'; import styles from './skeleton.module.scss'; type Props = { SVG: FunctionComponent & { title?: string | undefined }>; disabled?: boolean; }; const Skeleton = ({ SVG, disabled }: Props) => { return ( ); }; export { Skeleton };