Sha256: 8ba680e8dd1b5fc07298e76c60e5aa099f9a1ab04126978d290588ce3f0f384b
Contents?: true
Size: 904 Bytes
Versions: 150
Compression:
Stored size: 904 Bytes
Contents
import React from 'react' import { Caption, Date as FormattedDate, Title } from '../../' const DateUnstyled = (props) => { return ( <> <Caption size="xs" text="Basic unstyled example" /> <FormattedDate unstyled value={new Date()} {...props} /> <br /> <Caption size="xs" text="Example with wrapping typography kit" /> <Title size={1}> <FormattedDate unstyled value="1995-12-25" {...props} /> </Title> <br /> <Caption size="xs" text="Example with icon + subcaption" /> <Caption size="xs"> <FormattedDate showDayOfWeek showIcon unstyled value="1995-12-25" {...props} /> </Caption> </> ) } export default DateUnstyled
Version data entries
150 entries across 150 versions & 2 rubygems