Sha256: 4d5439e5b7798fac8bbfbb80e24b1a063df9959d174a35901e693a8576cb348a
Contents?: true
Size: 823 Bytes
Versions: 25
Compression:
Stored size: 823 Bytes
Contents
import React from 'react' import { Radio } from '../../' const RadioCustom = () => { return ( <div> <Radio className="my_custom_class" label="Custom Power" > <input name="custom" type="radio" value="power" /> </Radio> <br /> <Radio className="my_custom_class" label="Custom Nitro" > <input checked name="custom" type="radio" value="nitro" /> </Radio> <br /> <Radio className="my_custom_class" label="Custom Google" > <input name="custom" type="radio" value="google" /> </Radio> </div> ) } export default RadioCustom
Version data entries
25 entries across 25 versions & 1 rubygems