diff options
Diffstat (limited to 'apps/website/src/components/base/Paragraph.astro')
-rw-r--r-- | apps/website/src/components/base/Paragraph.astro | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/website/src/components/base/Paragraph.astro b/apps/website/src/components/base/Paragraph.astro index db0bff6..f700496 100644 --- a/apps/website/src/components/base/Paragraph.astro +++ b/apps/website/src/components/base/Paragraph.astro @@ -10,8 +10,8 @@ const sizes = { }; interface Props extends HTMLAttributes<'p'> { - text?: string - size?: keyof typeof sizes + text?: string; + size?: keyof typeof sizes; } const { |