import type * as React from "react"; import { Label } from "@reactive-resume/ui/components/label"; import { Switch } from "@reactive-resume/ui/components/switch"; const row: React.CSSProperties = { display: "flex", alignItems: "center", gap: 10, padding: 16, width: 300 }; const stack: React.CSSProperties = { display: "flex", flexDirection: "column", gap: 16, padding: 16, width: 300 }; export const On = () => (
); export const Off = () => (
); export const Small = () => (
); export const Disabled = () => (
);