@useloops/design-system
Version:
The official React based Loops design system
13 lines (10 loc) • 425 B
TypeScript
import { SxProps, Theme } from '@mui/material/styles';
import { MotionProps } from 'framer-motion';
import { FunctionComponent } from 'react';
interface ClipboardCopyingOverlayProps {
sx?: SxProps<Theme>;
motionProps?: MotionProps;
}
declare const ClipboardCopyingOverlay: FunctionComponent<ClipboardCopyingOverlayProps>;
export { ClipboardCopyingOverlay as default };
export type { ClipboardCopyingOverlayProps };