MCPcopy Create free account
hub / github.com/Thanas-R/Virdis / FieldCardProps

Interface FieldCardProps

src/components/FieldCard.tsx:25–31  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

23}
24
25interface FieldCardProps {
26 field: Field;
27 onRemove: (id: string) => void;
28 variant?: "select" | "list";
29 isActive?: boolean;
30 style?: React.CSSProperties;
31}
32
33const FieldCard = ({ field, onRemove, variant = "select", isActive = false, style }: FieldCardProps) => {
34 const isListVariant = variant === "list";

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected