Initial commit
This commit is contained in:
commit
b3a42bb0c8
91 changed files with 9419 additions and 0 deletions
13
src/icons/ArrowLeft.astro
Normal file
13
src/icons/ArrowLeft.astro
Normal file
|
@ -0,0 +1,13 @@
|
|||
---
|
||||
import type { HTMLAttributes } from 'astro/types';
|
||||
|
||||
type Props = HTMLAttributes<'svg'>;
|
||||
|
||||
const { class: className, ...props } = Astro.props;
|
||||
---
|
||||
|
||||
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" class={className} {...props}>
|
||||
<path
|
||||
d="M19.714 12c0 0.533-0.432 0.964-0.964 0.964v0h-11.172l4.14 4.138c0.175 0.175 0.283 0.416 0.283 0.683 0 0.533-0.432 0.965-0.965 0.965-0.267 0-0.508-0.108-0.683-0.283v0l-5.785-5.785c-0.175-0.175-0.283-0.416-0.283-0.683s0.108-0.508 0.283-0.683l5.785-5.785c0.175-0.175 0.416-0.283 0.683-0.283 0.533 0 0.965 0.432 0.965 0.965 0 0.267-0.108 0.508-0.283 0.683v0l-4.14 4.138h11.172c0.533 0 0.964 0.432 0.964 0.964v0z"
|
||||
></path>
|
||||
</svg>
|
Loading…
Add table
Add a link
Reference in a new issue