Sha256: 81e89fafa93b5d9117fcd330ffc11f894a08886b99ef78334bb5df7f11579e83
Contents?: true
Size: 1.62 KB
Versions: 94
Compression:
Stored size: 1.62 KB
Contents
import React from 'react' import { Currency, List, ListItem, Title } from '../../' 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
94 entries across 94 versions & 1 rubygems