import type * as React from "react"; import { Input } from "@reactive-resume/ui/components/input"; import { Label } from "@reactive-resume/ui/components/label"; const field: React.CSSProperties = { display: "flex", flexDirection: "column", gap: 6, padding: 16, width: 320 }; export const Default = () => (
); export const Placeholder = () => (
); export const Email = () => (
); export const Invalid = () => (
); export const Disabled = () => (
);