expense-manager-react
Version:
A comprehensive expense tracking application built with React, TypeScript, and Supabase
31 lines (30 loc) • 741 B
TypeScript
import { Badge } from '../components/ui/badge';
declare const meta: {
title: string;
component: typeof Badge;
tags: string[];
argTypes: {};
};
export default meta;
export declare const Base: {
render: (args: any) => import("react/jsx-runtime").JSX.Element;
args: {};
};
export declare const Secondary: {
render: (args: any) => import("react/jsx-runtime").JSX.Element;
args: {
variant: string;
};
};
export declare const Outline: {
render: (args: any) => import("react/jsx-runtime").JSX.Element;
args: {
variant: string;
};
};
export declare const Destructive: {
render: (args: any) => import("react/jsx-runtime").JSX.Element;
args: {
variant: string;
};
};