diff options
author | crupest <crupest@outlook.com> | 2023-09-20 20:16:30 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2023-09-20 20:16:30 +0800 |
commit | 901fe3d7c032d284da5c9bce24c4aaee9054c7ac (patch) | |
tree | 573cfafd972106d69bef0d41ff5f270ec3c43ec2 /FrontEnd/src/components/Spinner.tsx | |
parent | 4165ca210d9660a67b16089c31b7f65b8b09e019 (diff) | |
download | timeline-901fe3d7c032d284da5c9bce24c4aaee9054c7ac.tar.gz timeline-901fe3d7c032d284da5c9bce24c4aaee9054c7ac.tar.bz2 timeline-901fe3d7c032d284da5c9bce24c4aaee9054c7ac.zip |
Fix lint errors.
Diffstat (limited to 'FrontEnd/src/components/Spinner.tsx')
-rw-r--r-- | FrontEnd/src/components/Spinner.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FrontEnd/src/components/Spinner.tsx b/FrontEnd/src/components/Spinner.tsx index 2752a519..50ccf0b2 100644 --- a/FrontEnd/src/components/Spinner.tsx +++ b/FrontEnd/src/components/Spinner.tsx @@ -23,7 +23,7 @@ function calculateSize(size: SpinnerProps["size"]) { } export interface SpinnerProps extends ComponentPropsWithoutRef<"span"> { - size?: "sm" | "md" | "lg" | number | string; + size?: number | string; className?: string; style?: CSSProperties; } |