mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-16 20:03:24 +00:00
9bf63257fb
Port a86886b1fd
to glitch-soc
Signed-off-by: Claire <claire.github-309c@sitedethib.com>
28 lines
539 B
TypeScript
28 lines
539 B
TypeScript
interface Props {
|
|
size: number;
|
|
strokeWidth: number;
|
|
}
|
|
|
|
export const CircularProgress: React.FC<Props> = ({ size, strokeWidth }) => {
|
|
const viewBox = `0 0 ${size} ${size}`;
|
|
const radius = (size - strokeWidth) / 2;
|
|
|
|
return (
|
|
<svg
|
|
width={size}
|
|
height={size}
|
|
viewBox={viewBox}
|
|
className='circular-progress'
|
|
role='progressbar'
|
|
>
|
|
<circle
|
|
fill='none'
|
|
cx={size / 2}
|
|
cy={size / 2}
|
|
r={radius}
|
|
strokeWidth={`${strokeWidth}px`}
|
|
/>
|
|
</svg>
|
|
);
|
|
};
|