UNPKG

sani-components

Version:

This is a react ui library for several components like form, button etc

11 lines (10 loc) 308 B
import * as React from "react"; export type ButtonProps = { height?: number; width?: number; borderRadius?: "px" | "%"; marginX?: number; marginY?: number; }; declare const Button: ({ height, width, borderRadius, marginX, marginY, }: ButtonProps) => React.JSX.Element; export { Button };