Skip to content

Commit

Permalink
style: 💄 format
Browse files Browse the repository at this point in the history
Signed-off-by: kodai3 <[email protected]>
  • Loading branch information
kodai3 committed May 3, 2024
1 parent 60e7c0b commit 1d599d3
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/components/Button/CircularProgress.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,11 @@ const THICKNESS = 3.6;
export const CircularProgress: FC = ({ ...props }) => {
return (
<span role="progressbar" className={styles.root} {...props}>
<svg role="img" aria-label="読み込み中" viewBox={`${CIRCLE_SIZE / 2} ${CIRCLE_SIZE / 2} ${CIRCLE_SIZE} ${CIRCLE_SIZE}`}>
<svg
role="img"
aria-label="読み込み中"
viewBox={`${CIRCLE_SIZE / 2} ${CIRCLE_SIZE / 2} ${CIRCLE_SIZE} ${CIRCLE_SIZE}`}
>
<circle
className={styles.circle}
cx={CIRCLE_SIZE}
Expand Down

0 comments on commit 1d599d3

Please sign in to comment.