Sha256: 6e828646a28823320435ef442c57a112480ab10e5dbbbb8fa418d9a957de04cf
Contents?: true
Size: 1.72 KB
Versions: 1919
Compression:
Stored size: 1.72 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 ListLayoutRight = (props) => { return ( <> <List layout="right" {...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" /> <Currency amount="2,000.50" label="Caption" size="sm" /> </ListItem> </List> </> ) } export default ListLayoutRight
Version data entries
1,919 entries across 1,919 versions & 2 rubygems