Sha256: 617ef93e00fcefc3cb4fafa5c503ef2f328f6c5de10db2b595a5a09c51edacff
Contents?: true
Size: 804 Bytes
Versions: 36
Compression:
Stored size: 804 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 color="link" text="I am a body kit (Link)" {...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
36 entries across 36 versions & 1 rubygems