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