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
/
Content.d.ts
11 lines
(10 loc)
•
301 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
React
from
'react'
;
interface
Props
{
followsIcon
:
boolean
;
spacing
:
string
;
children
?:
React
.
ReactNode
;
isLoading
?:
boolean
;
testId
?:
string
; }
declare
const
_default
:
(
{ children, followsIcon, spacing, isLoading, ...rest }:
Props
) =>
JSX
.
Element
;
export
default
_default;