UNPKG

react-activity-feed

Version:

React components to create activity and notification feeds

33 lines (24 loc) 609 B
--- route: /components/flex menu: Composition Components --- import { Playground, Props } from 'docz'; import { DataLabel } from './DataLabel'; import { Flex } from './Flex'; # Flex ## Properties <Props of={Flex} /> ## Basic usage <Playground> <Flex> <DataLabel label="status" data="Sent" /> <DataLabel label="opens" data={1} /> </Flex> </Playground> ## With custom properties <Playground> <Flex a="center" j="center" style={{ backgroundColor: 'lightblue', borderRadius: 5 }}> <DataLabel label="status" data="Sent" /> <DataLabel label="opens" data={1} /> </Flex> </Playground>