diff --git a/client/src/components/Button2.tsx b/client/src/components/Button2.tsx index f80406a..9d0795f 100644 --- a/client/src/components/Button2.tsx +++ b/client/src/components/Button2.tsx @@ -5,6 +5,7 @@ interface Props { icon?: JSX.Element; onlyIcon?: boolean; children?: React.ReactNode; + className?: string; onClick?: () => void; } @@ -26,13 +27,16 @@ function Button2({ icon, onlyIcon = false, children, + className, onClick, }: Props) { return (