Sha256: a36ecfc786f02e6e0e191e2e6a87f2ed517268f18d2b7bce7eba76c1684c6cce
Contents?: true
Size: 699 Bytes
Versions: 136
Compression:
Stored size: 699 Bytes
Contents
import React from 'react' import { Body } from '../../' const BodyLight = (props) => { return ( <div> <Body text="I am a body kit (Default)" {...props} /> <Body color="light" text="I am a body kit (Light)" {...props} /> <Body color="lighter" text="I am a body kit (Lighter)" {...props} /> <Body status="negative" text="I am a body kit (Status: negative)" {...props} /> <Body status="positive" text="I am a body kit (Status: positive)" {...props} /> </div> ) } export default BodyLight
Version data entries
136 entries across 136 versions & 1 rubygems