@material-ui/icons#Alarm TypeScript Examples

The following examples show how to use @material-ui/icons#Alarm. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: with-icon.tsx    From react-component-library with BSD 3-Clause "New" or "Revised" License 6 votes vote down vote up
withIcon = (): StoryFnReactReturnType => (
    <InfoListItem
        title={'Info List Item'}
        subtitle={'with an icon'}
        icon={<Alarm />}
        iconAlign={select('iconAlign', ['left', 'center', 'right'], 'left')}
        iconColor={color('iconColor', Colors.black[500])}
    />
)