UNPKG

react-conventions

Version:

An open source set of React components that implement Ambassador's Design and UX patterns.

9 lines (6 loc) 253 B
import React from 'react' import Checkbox from 'react-conventions/lib/Checkbox' const ExampleCheckboxLeft = () => ( <Checkbox label='Checkbox with the label on the left side' value={true} labelPosition='left' /> ) export default ExampleCheckboxLeft