abstracts svgs, fiddling with prompt templates idea

This commit is contained in:
Daniel Avila 2023-02-10 21:00:02 -05:00
parent cab4b70b7e
commit 592b7629aa
9 changed files with 271 additions and 113 deletions

View file

@ -0,0 +1,21 @@
import React from 'react';
export default function LightningIcon() {
return (
<svg
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 24 24"
strokeWidth="1.5"
stroke="currentColor"
aria-hidden="true"
className="h-6 w-6"
>
<path
strokeLinecap="round"
strokeLinejoin="round"
d="M3.75 13.5l10.5-11.25L12 10.5h8.25L9.75 21.75 12 13.5H3.75z"
/>
</svg>
);
}