diff options
Diffstat (limited to 'apps/website/src/components/base/Header.astro')
-rw-r--r-- | apps/website/src/components/base/Header.astro | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/website/src/components/base/Header.astro b/apps/website/src/components/base/Header.astro index 962b2d4..63199e3 100644 --- a/apps/website/src/components/base/Header.astro +++ b/apps/website/src/components/base/Header.astro @@ -14,9 +14,9 @@ const sizes = { type Headers = 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6'; interface Props extends HTMLAttributes<Headers> { - size?: keyof typeof sizes - align?: 'left' | 'center' | 'right' | 'inherit' - inheritSize?: boolean + size?: keyof typeof sizes; + align?: 'left' | 'center' | 'right' | 'inherit'; + inheritSize?: boolean; } const { |