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