mirror of
https://bitbucket.org/Mattrixwv/mattrixwvreactcomponents.git
synced 2025-12-06 21:53:57 -05:00
109 lines
1.9 KiB
TypeScript
109 lines
1.9 KiB
TypeScript
import type { LoadingBarsProps } from "$/types/LoadingTypes";
|
|
|
|
|
|
export default function CircleBars({
|
|
width,
|
|
height,
|
|
className,
|
|
animationDuration = 0.75,
|
|
stroke,
|
|
fill
|
|
}: LoadingBarsProps){
|
|
//https://github.com/n3r4zzurr0/svg-spinners/blob/main/svg-smil/bars-rotate-fade.svg
|
|
|
|
|
|
return (
|
|
<svg
|
|
width={width}
|
|
height={height}
|
|
viewBox="0 0 24 24"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
>
|
|
<g>
|
|
<rect
|
|
x="11"
|
|
y="1"
|
|
width="2"
|
|
height="5"
|
|
opacity=".14"
|
|
className={className}
|
|
stroke={stroke}
|
|
fill={fill}
|
|
/>
|
|
<rect
|
|
x="11"
|
|
y="1"
|
|
width="2"
|
|
height="5"
|
|
transform="rotate(30 12 12)"
|
|
opacity=".29"
|
|
className={className}
|
|
stroke={stroke}
|
|
fill={fill}
|
|
/>
|
|
<rect
|
|
x="11"
|
|
y="1"
|
|
width="2"
|
|
height="5"
|
|
transform="rotate(60 12 12)"
|
|
opacity=".43"
|
|
className={className}
|
|
stroke={stroke}
|
|
fill={fill}
|
|
/>
|
|
<rect
|
|
x="11"
|
|
y="1"
|
|
width="2"
|
|
height="5"
|
|
transform="rotate(90 12 12)"
|
|
opacity=".57"
|
|
className={className}
|
|
stroke={stroke}
|
|
fill={fill}
|
|
/>
|
|
<rect
|
|
x="11"
|
|
y="1"
|
|
width="2"
|
|
height="5"
|
|
transform="rotate(120 12 12)"
|
|
opacity=".71"
|
|
className={className}
|
|
stroke={stroke}
|
|
fill={fill}
|
|
/>
|
|
<rect
|
|
x="11"
|
|
y="1"
|
|
width="2"
|
|
height="5"
|
|
transform="rotate(150 12 12)"
|
|
opacity=".86"
|
|
className={className}
|
|
stroke={stroke}
|
|
fill={fill}
|
|
/>
|
|
<rect
|
|
x="11"
|
|
y="1"
|
|
width="2"
|
|
height="5"
|
|
transform="rotate(180 12 12)"
|
|
className={className}
|
|
stroke={stroke}
|
|
fill={fill}
|
|
/>
|
|
<animateTransform
|
|
attributeName="transform"
|
|
type="rotate"
|
|
calcMode="discrete"
|
|
dur={animationDuration}
|
|
values="0 12 12;30 12 12;60 12 12;90 12 12;120 12 12;150 12 12;180 12 12;210 12 12;240 12 12;270 12 12;300 12 12;330 12 12"
|
|
repeatCount="indefinite"
|
|
/>
|
|
</g>
|
|
</svg>
|
|
);
|
|
} |