@useloops/design-system
Version:
The official React based Loops design system
14 lines (11 loc) • 530 B
TypeScript
import { SxProps } from '@mui/material';
import { FunctionComponent } from 'react';
interface BrandBadgeProps {
color?: 'purple' | 'peach' | 'red' | 'default';
name: 'emotion-meh' | 'emotion-good' | 'emotion-great' | 'understanding-unknown' | 'understanding-low' | 'understanding-good' | 'understanding-great' | 'property-secure' | 'property-private';
size?: number;
sx?: SxProps;
}
declare const BrandBadge: FunctionComponent<BrandBadgeProps>;
export { BrandBadge as default };
export type { BrandBadgeProps };