UNPKG

@useloops/design-system

Version:

The official React based Loops design system

13 lines (10 loc) 442 B
import { SxProps } from '@mui/material'; import { FunctionComponent } from 'react'; interface BulletGraphicProps { name: 'placeholder' | 'variant-test' | 'worldwide' | 'celebrate-collaborate' | 'ai' | 'many-media' | 'qual-and-quant' | 'alert' | 'comment'; size?: number; sx?: SxProps; } declare const BulletGraphic: FunctionComponent<BulletGraphicProps>; export { BulletGraphic as default }; export type { BulletGraphicProps };