import * as React from "react"; import { Indicator } from "./Indicator"; import { Icon } from "./Icon"; import { StructureProps } from "./system/unions"; export type CheckboxProps = StructureProps & { selected?: boolean; hasError?: boolean; disabled?: boolean; } & React.HTMLAttributes; export const Checkbox = ({ selected, disabled, hasError, ...props }: CheckboxProps) => { return ( ); }; Checkbox.displayName = "Checkbox";