## Checkbox Usage example: ```typescript jsx import { useState } from "react"; import { Checbox } from '@project-1114/ui-kit' export function App(){ const [checkbox, setCheckbox] = useState(false); return ( setCheckbox(prev => !prev)} > Check the rules ) } ```