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