1 | /// <reference types="react" />
|
2 | interface Props {
|
3 | icon: React.ReactChild;
|
4 | isLoading?: boolean;
|
5 | isOnlyChild: boolean;
|
6 | spacing: string;
|
7 | }
|
8 | declare const _default: ({ spacing, icon, isOnlyChild, isLoading, ...rest }: Props) => JSX.Element;
|
9 | export default _default;
|