UNPKG

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