UNPKG
@kalamazoo/button
Version:
latest (1.0.2)
1.0.2
1.0.0
A React component that is a base button.
github.com/stevenselcuk/kalamazoo
stevenselcuk/kalamazoo
@kalamazoo/button
/
dist
/
cjs
/
components
/
IconWrapper.d.ts
10 lines
(9 loc)
•
277 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
/// <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;