UNPKG

chop-logic-components

Version:

React UI components library for Chop Logic project

5 lines (4 loc) 201 B
import { ButtonHTMLAttributes, FC, PropsWithChildren } from 'react'; type Props = ButtonHTMLAttributes<HTMLButtonElement> & PropsWithChildren; export declare const PrimaryButton: FC<Props>; export {};