{{=« »=}} import * as React from 'react'; import { addPropertyControls, ControlType } from 'framer'; // tslint:disable-next-line: ban-ts-ignore // @ts-ignore import Mui«componentName» from '@material-ui/core/«componentName»'; import { Icon } from './Icon'; interface Props { «& tsInterface» } const defaultProps: Props = { «& defaultProps» }; const style: React.CSSProperties = { «& style» }; export const «componentName»: React.SFC = (props: Props) => { const { badgeColor: color, badgeContent, icon, theme, width, height, ...other } = props; const content = icon === '' ? ( badgeContent ) : ( // @ts-ignore ); return ; }; «componentName».defaultProps = defaultProps; addPropertyControls(«componentName», { «& propertyControls» });