import React from 'react'; import { CheckboxIndicator, classes } from './checkbox-indicator'; export const Checked = () => { return (
); }; export const Unchecked = () => { return (
); }; export const Disabled = () => { return (
); };