Skip to content

Commit

Permalink
Add icons
Browse files Browse the repository at this point in the history
  • Loading branch information
TWilson023 committed Dec 26, 2024
1 parent afa0c5e commit c4e6d5d
Show file tree
Hide file tree
Showing 3 changed files with 80 additions and 0 deletions.
39 changes: 39 additions & 0 deletions packages/ui/src/icons/nucleo/circle-question.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
import { SVGProps } from "react";

export function CircleQuestion(props: SVGProps<SVGSVGElement>) {
return (
<svg
height="18"
width="18"
viewBox="0 0 18 18"
xmlns="http://www.w3.org/2000/svg"
{...props}
>
<g fill="currentColor">
<circle
cx="9"
cy="9"
fill="none"
r="7.25"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth="1.5"
/>
<path
d="M6.925,6.619c.388-1.057,1.294-1.492,2.18-1.492,.895,0,1.818,.638,1.818,1.808,0,1.784-1.816,1.468-2.096,3.065"
fill="none"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth="1.5"
/>
<path
d="M8.791,13.567c-.552,0-1-.449-1-1s.448-1,1-1,1,.449,1,1-.448,1-1,1Z"
fill="currentColor"
stroke="none"
/>
</g>
</svg>
);
}
2 changes: 2 additions & 0 deletions packages/ui/src/icons/nucleo/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ export * from "./circle-half-dotted-check";
export * from "./circle-half-dotted-clock";
export * from "./circle-info";
export * from "./circle-play-fill";
export * from "./circle-question";
export * from "./circle-warning";
export * from "./circle-xmark";
export * from "./circles";
Expand Down Expand Up @@ -145,6 +146,7 @@ export * from "./table-icon";
export * from "./table-rows2";
export * from "./tablet";
export * from "./tag";
export * from "./tags";
export * from "./toggle2-fill";
export * from "./trash";
export * from "./tv";
Expand Down
39 changes: 39 additions & 0 deletions packages/ui/src/icons/nucleo/tags.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
import { SVGProps } from "react";

export function Tags(props: SVGProps<SVGSVGElement>) {
return (
<svg
height="18"
width="18"
viewBox="0 0 18 18"
xmlns="http://www.w3.org/2000/svg"
{...props}
>
<g fill="currentColor">
<path
d="M1.75,4.25H7.336c.265,0,.52,.105,.707,.293l5.793,5.793c.781,.781,.781,2.047,0,2.828l-3.172,3.172c-.781,.781-2.047,.781-2.828,0L2.043,10.543c-.188-.188-.293-.442-.293-.707V4.25Z"
fill="none"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth="1.5"
/>
<path
d="M3.25,1.75v-.5h5.586c.265,0,.52,.105,.707,.293l5.793,5.793c.432,.432,.625,1.012,.579,1.577"
fill="none"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth="1.5"
/>
<circle
cx="5.25"
cy="7.75"
fill="currentColor"
r="1.25"
stroke="none"
/>
</g>
</svg>
);
}

0 comments on commit c4e6d5d

Please sign in to comment.