Skip to content

Commit

Permalink
fix #1035
Browse files Browse the repository at this point in the history
  • Loading branch information
fkhadra committed Jan 15, 2024
1 parent 7bdb7bd commit 64289d1
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/components/Icons.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,12 @@ export interface IconProps {

export type BuiltInIconProps = React.SVGProps<SVGSVGElement> & IconProps;

const Svg: React.FC<BuiltInIconProps> = ({ theme, type, ...rest }) => (
const Svg: React.FC<BuiltInIconProps> = ({
theme,
type,
isLoading,
...rest
}) => (
<svg
viewBox="0 0 24 24"
width="100%"
Expand Down

0 comments on commit 64289d1

Please sign in to comment.