diff --git a/packages/ui/src/icons/nucleo/circle-question.tsx b/packages/ui/src/icons/nucleo/circle-question.tsx new file mode 100644 index 0000000000..baeef5bf63 --- /dev/null +++ b/packages/ui/src/icons/nucleo/circle-question.tsx @@ -0,0 +1,39 @@ +import { SVGProps } from "react"; + +export function CircleQuestion(props: SVGProps) { + return ( + + + + + + + + ); +} diff --git a/packages/ui/src/icons/nucleo/index.ts b/packages/ui/src/icons/nucleo/index.ts index a67a0756c2..09a00e59c1 100644 --- a/packages/ui/src/icons/nucleo/index.ts +++ b/packages/ui/src/icons/nucleo/index.ts @@ -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"; @@ -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"; diff --git a/packages/ui/src/icons/nucleo/tags.tsx b/packages/ui/src/icons/nucleo/tags.tsx new file mode 100644 index 0000000000..3c59e13e83 --- /dev/null +++ b/packages/ui/src/icons/nucleo/tags.tsx @@ -0,0 +1,39 @@ +import { SVGProps } from "react"; + +export function Tags(props: SVGProps) { + return ( + + + + + + + + ); +}