Sha256: 8242bb25fe377700b11fa1134a3c26ff128be8ddb016b4593e5b598813f2402e
Contents?: true
Size: 1 KB
Versions: 1646
Compression:
Stored size: 1 KB
Contents
import React, { useState } from 'react' import FormGroup from '../_form_group' import SelectableCardIcon from '../../pb_selectable_card_icon/_selectable_card_icon' const FormGroupSelectableCardIcon = (props) => { const [selectedFormat, toggleFormat] = useState(null) return ( <div> <FormGroup> <SelectableCardIcon checked={selectedFormat === 'basketball'} icon="basketball-ball" inputId={7} name="select" onChange={() => toggleFormat('basketball')} titleText="Basketball" value="basketball" {...props} /> <SelectableCardIcon checked={selectedFormat === 'football'} icon="football-ball" inputId={8} name="select" onChange={() => toggleFormat('football')} titleText="Football" value="football" {...props} /> </FormGroup> </div> ) } export default FormGroupSelectableCardIcon
Version data entries
1,646 entries across 1,646 versions & 2 rubygems