Sha256: 7bed3713dedae64cf0e4fcc410147490702beb897a131940c148d37acbf7c03a
Contents?: true
Size: 811 Bytes
Versions: 449
Compression:
Stored size: 811 Bytes
Contents
import React from 'react' import { Date as FormattedDate } from '../..' const DateVariants = (props) => { return ( <div> <FormattedDate showIcon size="sm" value="1995-12-25" {...props} /> <br /> <br /> <FormattedDate value="1995-12-25" {...props} /> <br /> <br /> <FormattedDate showIcon value="1995-12-25" {...props} /> <br /> <br /> <FormattedDate showDayOfWeek value="1995-12-25" {...props} /> <br /> <br /> <FormattedDate showDayOfWeek showIcon value="1995-12-25" {...props} /> </div> ) } export default DateVariants
Version data entries
449 entries across 449 versions & 2 rubygems