checkbox
import { Checkbox } from "@ariakit/react";
import "./style.css";
export default function Example() {
return (
<label className="label">
<Checkbox className="checkbox" /> I have read and agree to the terms and
conditions
</label>
);
}