diff options
| author | Pauline <git@ethanlibs.co> | 2023-10-14 14:24:27 -0400 |
|---|---|---|
| committer | Pauline <git@ethanlibs.co> | 2023-10-14 14:24:27 -0400 |
| commit | 997b850967df8dc03a7321b167dc9f7b52f98c7a (patch) | |
| tree | 76568b90c7b82372a720249b89193f161581f2e8 /apps/website/src/components/icons | |
| parent | dcc90017baaafa74c79acaa053535d73b6222475 (diff) | |
| download | Nexus-997b850967df8dc03a7321b167dc9f7b52f98c7a.tar.gz Nexus-997b850967df8dc03a7321b167dc9f7b52f98c7a.tar.bz2 Nexus-997b850967df8dc03a7321b167dc9f7b52f98c7a.zip | |
migrate(web): migrate from website/new-website to nexus/apps/website
Diffstat (limited to 'apps/website/src/components/icons')
| -rw-r--r-- | apps/website/src/components/icons/ChevronDown.astro | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/apps/website/src/components/icons/ChevronDown.astro b/apps/website/src/components/icons/ChevronDown.astro new file mode 100644 index 0000000..5cb98e4 --- /dev/null +++ b/apps/website/src/components/icons/ChevronDown.astro @@ -0,0 +1,16 @@ +--- +import type { HTMLAttributes } from 'astro/types'; + +interface Props extends HTMLAttributes<"svg"> { + size?: number; +} + +const { + size = 16, + ...attr +} = Astro.props; +--- + +<svg xmlns="http://www.w3.org/2000/svg" width={size} height={size} viewBox="0 0 16 16" fill="none" {...attr}> + <path d="M4 6L8 10L12 6" stroke="currentColor" stroke-width="1.3" stroke-linecap="round" stroke-linejoin="round"/> +</svg>
\ No newline at end of file |
