finish all pages

This commit is contained in:
Surjith S M
2022-11-09 14:42:22 +05:30
parent d40120e7a8
commit f4f0e2b66a
18 changed files with 273 additions and 12 deletions

View File

@@ -0,0 +1 @@
export { default as Tick } from "./tick.astro";

View File

@@ -0,0 +1,16 @@
---
const { class: className } = Astro.props;
---
<svg
class={className}
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
><circle cx="12" cy="12" r="9" fill="currentColor" fill-opacity=".16"
></circle><path
fill-rule="evenodd"
clip-rule="evenodd"
d="M3.75 12a8.25 8.25 0 0 1 11.916-7.393.75.75 0 1 0 .668-1.343A9.713 9.713 0 0 0 12 2.25c-5.385 0-9.75 4.365-9.75 9.75s4.365 9.75 9.75 9.75 9.75-4.365 9.75-9.75c0-.366-.02-.727-.06-1.082a.75.75 0 1 0-1.49.164A8.25 8.25 0 1 1 3.75 12Zm17.78-6.47a.75.75 0 0 0-1.06-1.06L12 12.94l-2.47-2.47a.75.75 0 0 0-1.06 1.06l3 3a.75.75 0 0 0 1.06 0l9-9Z"
fill="currentColor"></path>
</svg>