UNPKG

@kalamazoo/button

Version:

A React component that is a base button.

10 lines (9 loc) 277 B
/// <reference types="react" /> interface Props { icon: React.ReactChild; isLoading?: boolean; isOnlyChild: boolean; spacing: string; } declare const _default: ({ spacing, icon, isOnlyChild, isLoading, ...rest }: Props) => JSX.Element; export default _default;