@praetorian-chariot/ui
Version:
The UI component library for Chariot, built with Tailwind CSS and React.
14 lines • 413 B
TypeScript
import React from "react";
export interface FeatureRadioProps {
id: string;
title: string;
description: string;
checkedContent?: React.ReactNode;
checked?: boolean;
onChange?: (checked: boolean) => void;
disabled?: boolean;
className?: string;
}
export declare const FeatureRadio: React.FC<FeatureRadioProps>;
export default FeatureRadio;
//# sourceMappingURL=FeatureRadio.d.ts.map