-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIcons.tsx
22 lines (21 loc) · 816 Bytes
/
Icons.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import { LucideProps } from "lucide-react";
export const Icons = {
underline: (props: LucideProps) => (
<svg {...props} viewBox="0 0 687 155">
<g
stroke="currentColor"
strokeWidth="7"
fill="none"
fillRule="evenodd"
strokeLinecap="round"
strokeLinejoin="round"
>
<path
d="M20 98c27-13.3333333 54-20 81-20 40.5 0 40.5 20 81 20s40.626917-20 81-20 40.123083 20 80.5 20 40.5-20 81-20 40.5 20 81 20 40.626917-20 81-20c26.915389 0 53.748722 6.6666667 80.5 20"
opacity=".3"
></path>
<path d="M20 118c27-13.3333333 54-20 81-20 40.5 0 40.5 20 81 20s40.626917-20 81-20 40.123083 20 80.5 20 40.5-20 81-20 40.5 20 81 20 40.626917-20 81-20c26.915389 0 53.748722 6.6666667 80.5 20"></path>
</g>
</svg>
),
};