Sha256: 401b17fdede41f5af08387643bb7f3d5b96dd0c45c78b7b6fd00c49fb946337c
Contents?: true
Size: 718 Bytes
Versions: 675
Compression:
Stored size: 718 Bytes
Contents
import React from 'react' import { IconStatValue } from 'playbook-ui' const IconStatValueSizes = (props) => { return ( <div> <IconStatValue icon="car" size="sm" text="distance driven" unit="mi" value={158.3} {...props} /> <br /> <IconStatValue icon="car" size="md" text="distance driven" unit="mi" value={158.3} {...props} /> <br /> <IconStatValue icon="car" size="lg" text="distance driven" unit="mi" value={158.3} {...props} /> </div> ) } export default IconStatValueSizes
Version data entries
675 entries across 675 versions & 2 rubygems