{{=« »=}} 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'; import { Avatar } from './Avatar'; interface Props { «& tsInterface» } const defaultProps: Props = { «& defaultProps» }; export const «componentName»: React.SFC = (props: Props) => { const { avatarImageFile, avatarImageUrl, deletable, deleteIcon, height, icon, iconTheme, width, ...other } = props; return ( ) : ( undefined ) } icon={} onDelete = {deletable ? () => {} : undefined} deleteIcon={deleteIcon === '' ? undefined : } {...other} /> ); } «componentName».defaultProps = defaultProps; addPropertyControls(«componentName», { «& propertyControls» });