Add Prettier. Remove unused Button component

This commit is contained in:
Lennon Puldagrealy
2022-12-18 11:14:41 -08:00
parent 278189d015
commit ed47bcaa7a
21 changed files with 374 additions and 353 deletions
+3 -3
View File
@@ -1,4 +1,4 @@
import { useId } from 'react'
import { useId } from "react";
export function CircleBackground({
color,
@@ -6,7 +6,7 @@ export function CircleBackground({
height = 558,
...props
}) {
let id = useId()
let id = useId();
return (
<svg
@@ -41,5 +41,5 @@ export function CircleBackground({
strokeLinecap="round"
/>
</svg>
)
);
}