alouette
Version:
A modern, customizable design system built on top of NativeWind v5 with configurable defaults
11 lines • 398 B
TypeScript
import type { ReactNode } from "react";
import { type SVGIconElement } from "../primitives/Icon";
export interface RadioCardProps {
value: string;
label: string;
description?: string;
icon?: SVGIconElement;
disabled?: boolean;
}
export declare function RadioCard({ value, label, description, icon, disabled, }: RadioCardProps): ReactNode;
//# sourceMappingURL=RadioCard.d.ts.map