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