Sha256: 8a571506a0ab1f10c07bc9520cf0ca8232f687e9cdaecfe5fb9cc8f5513349b2
Contents?: true
Size: 713 Bytes
Versions: 1065
Compression:
Stored size: 713 Bytes
Contents
import React from 'react' import { IconStatValue } from '../../' 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
1,065 entries across 1,065 versions & 2 rubygems