This kits consists of title kit and body text. It is used to display a title and a count (numbers). It has a base size and a large formation for dashboard use.
Use this kit as a form of label value only for a numeric value.
import React from 'react' import TitleCount from 'playbook-ui' const TitleCountDefault = (props) => { return ( <> <TitleCount count={35.78} title="Appointments" /> <br /> <TitleCount count={7399} size="lg" title="Appointments" /> <br /> <TitleCount count={-379503.372} size="lg" title="Appointments" /> </> ) } export default TitleCountDefault
import React from 'react' import TitleCount from 'playbook-ui' const TitleCountAlign = (props) => { return ( <> <TitleCount count={527} title="Remodeling Consultants" /> <br /> <TitleCount align="center" count={527} title="Remodeling Consultants" /> <br /> <TitleCount align="right" count={527} title="Remodeling Consultants" /> </> ) } export default TitleCountAlign