Sha256: eca52e517297252e4adce51d5b8234e40a53490cdeac80ef4fbd1271401b5b92
Contents?: true
Size: 1.67 KB
Versions: 94
Compression:
Stored size: 1.67 KB
Contents
import React from 'react' import { Currency, List, ListItem, Title } from '../../' const ListLayoutLeft = (props) => { return ( <> <List layout="left" {...props} > <ListItem> <Title size={4} text="Label" {...props} /> <Currency amount="2,000.50" label="Caption" size="sm" {...props} /> </ListItem> <ListItem> <Title size={4} text="Label" {...props} /> <Currency amount="2,000.50" label="Caption" size="sm" {...props} /> </ListItem> <ListItem> <Title size={4} text="Label" {...props} /> <Currency amount="2,000.50" label="Caption" size="sm" {...props} /> </ListItem> <ListItem> <Title size={4} text="Label" {...props} /> <Currency amount="2,000.50" label="Caption" size="sm" {...props} /> </ListItem> <ListItem> <Title size={4} text="Label" {...props} /> <Currency amount="2,000.50" label="Caption" size="sm" {...props} /> </ListItem> </List> </> ) } export default ListLayoutLeft
Version data entries
94 entries across 94 versions & 1 rubygems