@useloops/design-system
Version:
The official React based Loops design system
13 lines (10 loc) • 356 B
TypeScript
import { BoxProps } from '@mui/material';
import { ReactNode, FunctionComponent } from 'react';
interface EmojiWrapperProps extends BoxProps {
checked?: boolean;
disabled?: boolean;
children: ReactNode;
}
declare const EmojiWrapper: FunctionComponent<EmojiWrapperProps>;
export { EmojiWrapper as default };
export type { EmojiWrapperProps };