event-services
Version:
Collection of hooks, components, generics (buttons, containers, styles, tools) for creating web applications for guest management for any type of events: weddings, parties, graduations that require guest confirmation and display useful information to gues
12 lines (11 loc) • 329 B
TypeScript
type ButtonT = {
clasName?: string;
round?: boolean;
disabled?: boolean;
text: string;
onClick?: () => void;
href?: string;
target?: string;
};
export declare const Button: ({ clasName, disabled, text, onClick, href, target, ...props }: ButtonT) => import("react/jsx-runtime").JSX.Element;
export {};