Skip to content

Commit

Permalink
fix: prop name for loader
Browse files Browse the repository at this point in the history
  • Loading branch information
KaustubhKumar05 authored Aug 9, 2023
1 parent 25f70f9 commit 4738829
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/roomkit-react/src/Loading/Loading.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type LoadingProps = Props & React.SVGProps<SVGSVGElement>;

export const Loading = ({ size = 24, color = 'white', ...props }: LoadingProps) => (
<svg width={size} height={size} viewBox="0 0 50 50" fill={color} xmlns="http://www.w3.org/2000/svg" {...props}>
<circle cx="25" cy="25" r="20" stroke={color} stroke-width="4" stroke-dasharray="70 30" fill="none">
<circle cx="25" cy="25" r="20" stroke={color} strokeWidth="4" strokeDasharray="70 30" fill="none">
<animateTransform
attributeName="transform"
attributeType="XML"
Expand Down

0 comments on commit 4738829

Please sign in to comment.