feat(app): new layout
This commit is contained in:
parent
9f66a45970
commit
679270d9e0
19 changed files with 681 additions and 276 deletions
|
|
@ -10,9 +10,14 @@ const squares = Array.from({ length: 16 }, (_, i) => ({
|
|||
outer: outerIndices.has(i),
|
||||
}))
|
||||
|
||||
export function Spinner(props: { class?: string; classList?: ComponentProps<"div">["classList"] }) {
|
||||
export function Spinner(props: {
|
||||
class?: string
|
||||
classList?: ComponentProps<"div">["classList"]
|
||||
style?: ComponentProps<"div">["style"]
|
||||
}) {
|
||||
return (
|
||||
<svg
|
||||
{...props}
|
||||
viewBox="0 0 15 15"
|
||||
data-component="spinner"
|
||||
classList={{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue