13 lines
690 B
Text
13 lines
690 B
Text
---
|
|
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>
|