galileo-ui
Version:
My Design System Components
15 lines (14 loc) • 529 B
TypeScript
import React from "react";
interface ButtonProps {
textColor?: string;
bgColor?: string;
borderRadius?: string;
width?: string;
height?: string;
txt?: string;
hoverBgColor?: string;
hoverTextColor?: string;
variant: "primary" | "secondary" | "tertirary" | "success" | "warning" | "danger" | "unstyled" | "disable";
}
export default function StkButton({ textColor, bgColor, borderRadius, width, height, txt, hoverBgColor, hoverTextColor, variant, }: ButtonProps): React.JSX.Element;
export {};