TextInput
Universal Props
How to use
import React from 'react';
import { withBluerain } from "@blueeast/bluerain-os";
const Checkbox = (props) => {
const BR = props.bluerain;
return (
<BR.Components.Checkbox label="disabled" color="red" disabled={true} />
)
}
export default withBluerain(Checkbox);Last updated