diff --git a/src/components/Button.tsx b/src/components/Button.tsx index c2f9bd9..386e153 100644 --- a/src/components/Button.tsx +++ b/src/components/Button.tsx @@ -6,6 +6,7 @@ import { clx } from '../helpers/utils' type Props = { className?: string; isloading?: boolean, + colorLoading?: string, } & ButtonHTMLAttributes & XOR<{ children: ReactNode }, { label: string }>; @@ -21,7 +22,7 @@ const Button: FC = memo((props: Props) => {