@coinmeca/ui
Version:
This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app).
22 lines • 633 B
TypeScript
import { type Icon } from "../../../components/elements/icon/Icon";
export interface Button {
style?: object;
title?: string;
type?: "glass" | "line" | "solid";
color?: string;
align?: "left" | "center" | "right";
gap?: number;
fit?: boolean;
icon?: string | Icon;
iconLeft?: string | Icon;
iconRight?: string | Icon;
onClick?: Function;
onClickLonger?: Function;
onBlur?: Function;
scale?: number;
hide?: boolean;
disabled?: boolean;
children?: any;
}
export default function Button(props: Button): import("react").JSX.Element;
//# sourceMappingURL=Button.d.ts.map