15 lines
417 B
Text
15 lines
417 B
Text
---
|
|
import SVGIcon from "../SVGIcon.astro";
|
|
|
|
type Props = {
|
|
width: string;
|
|
height: string;
|
|
class?: string;
|
|
};
|
|
---
|
|
|
|
<SVGIcon {...Astro.props} viewBox="0 0 24 24">
|
|
<path
|
|
d="M11.955.49A12 12 0 0 0 0 12.49a12 12 0 0 0 1.832 6.373L11.838 5.928a.187.14 0 0 1 .324 0l10.006 12.935A12 12 0 0 0 24 12.49a12 12 0 0 0-12-12 12 12 0 0 0-.045 0zm.375 6.467l4.416 16.553a12 12 0 0 0 5.137-4.213z"
|
|
></path>
|
|
</SVGIcon>
|