UNPKG

@flanksource/clicky-ui

Version:

Flanksource Clicky UI — React component library built on shadcn/ui with light/dark and density theming.

12 lines 421 B
import { ReactNode } from 'react'; export type TabButtonProps = { active: boolean; onClick: () => void; label: ReactNode; icon?: string; count?: number; countColor?: string; className?: string; }; export declare function TabButton({ active, onClick, label, icon, count, countColor, className, }: TabButtonProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=TabButton.d.ts.map