blob: 5cb98e4274ab4a8efd57c48f08996f8ff44aa270 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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>
|