Sha256: d92ec6e2c2afb002c33a4cee70074ceba7b0724e449aaf6aca2aa51905476d2f
Contents?: true
Size: 1.77 KB
Versions: 1919
Compression:
Stored size: 1.77 KB
Contents
import React from 'react' import List from '../_list' import ListItem from '../_list_item' import Currency from '../../pb_currency/_currency' import Title from '../../pb_title/_title' 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
1,919 entries across 1,919 versions & 2 rubygems