diff --git a/packages/ui/package.json b/packages/ui/package.json index 5331a8f49c..acef3ebbfc 100644 --- a/packages/ui/package.json +++ b/packages/ui/package.json @@ -1,7 +1,7 @@ { "name": "@dub/ui", "description": "UI components for Dub.co", - "version": "0.2.9", + "version": "0.2.11", "sideEffects": false, "main": "./dist/index.js", "module": "./dist/index.mjs", diff --git a/packages/ui/src/icons/nucleo/calendar.tsx b/packages/ui/src/icons/nucleo/calendar.tsx new file mode 100644 index 0000000000..a105a942ef --- /dev/null +++ b/packages/ui/src/icons/nucleo/calendar.tsx @@ -0,0 +1,62 @@ +import { SVGProps } from "react"; + +export function CalendarIcon(props: SVGProps) { + return ( + + + + + + + + + ); +} diff --git a/packages/ui/src/icons/nucleo/folder5.tsx b/packages/ui/src/icons/nucleo/folder5.tsx new file mode 100644 index 0000000000..943df6c591 --- /dev/null +++ b/packages/ui/src/icons/nucleo/folder5.tsx @@ -0,0 +1,37 @@ +import { SVGProps } from "react"; + +export function Folder5(props: SVGProps) { + return ( + + + + + + + ); +} diff --git a/packages/ui/src/icons/nucleo/gear3.tsx b/packages/ui/src/icons/nucleo/gear3.tsx new file mode 100644 index 0000000000..3642b2fead --- /dev/null +++ b/packages/ui/src/icons/nucleo/gear3.tsx @@ -0,0 +1,34 @@ +import { SVGProps } from "react"; + +export function Gear3(props: SVGProps) { + return ( + + + + + + + ); +} diff --git a/packages/ui/src/icons/nucleo/gem.tsx b/packages/ui/src/icons/nucleo/gem.tsx new file mode 100644 index 0000000000..10d576f103 --- /dev/null +++ b/packages/ui/src/icons/nucleo/gem.tsx @@ -0,0 +1,51 @@ +import { SVGProps } from "react"; + +export function Gem(props: SVGProps) { + return ( + + + + + + + + + ); +} diff --git a/packages/ui/src/icons/nucleo/index.ts b/packages/ui/src/icons/nucleo/index.ts index 766a5b618f..a67a0756c2 100644 --- a/packages/ui/src/icons/nucleo/index.ts +++ b/packages/ui/src/icons/nucleo/index.ts @@ -17,6 +17,7 @@ export * from "./books2"; export * from "./box-archive"; export * from "./bullet-list"; export * from "./bullet-list-fill"; +export * from "./calendar"; export * from "./calendar-days"; export * from "./calendar6"; export * from "./cards"; @@ -71,10 +72,13 @@ export * from "./flag-wavy"; export * from "./flag2"; export * from "./flag6"; export * from "./folder"; +export * from "./folder5"; export * from "./gaming-console"; export * from "./gauge6"; export * from "./gear"; export * from "./gear2"; +export * from "./gear3"; +export * from "./gem"; export * from "./gift"; export * from "./gift-fill"; export * from "./globe"; @@ -96,6 +100,7 @@ export * from "./input-search"; export * from "./invoice-dollar"; export * from "./key"; export * from "./layout-sidebar"; +export * from "./license"; export * from "./lines-y"; export * from "./link-broken"; export * from "./link4"; @@ -129,6 +134,7 @@ export * from "./scan-text"; export * from "./scribble"; export * from "./shield-alert"; export * from "./shield-check"; +export * from "./shield-keyhole"; export * from "./shuffle"; export * from "./sliders"; export * from "./sparkle3"; @@ -144,8 +150,12 @@ export * from "./trash"; export * from "./tv"; export * from "./user"; export * from "./user-check"; +export * from "./user-crown"; export * from "./users"; +export * from "./users-settings"; +export * from "./users2"; export * from "./users6"; +export * from "./versions2"; export * from "./watch"; export * from "./webhook"; export * from "./window"; diff --git a/packages/ui/src/icons/nucleo/license.tsx b/packages/ui/src/icons/nucleo/license.tsx new file mode 100644 index 0000000000..8291c5f54c --- /dev/null +++ b/packages/ui/src/icons/nucleo/license.tsx @@ -0,0 +1,61 @@ +import { SVGProps } from "react"; + +export function License(props: SVGProps) { + return ( + + + + + + + + + ); +} diff --git a/packages/ui/src/icons/nucleo/shield-keyhole.tsx b/packages/ui/src/icons/nucleo/shield-keyhole.tsx new file mode 100644 index 0000000000..d17333ddf0 --- /dev/null +++ b/packages/ui/src/icons/nucleo/shield-keyhole.tsx @@ -0,0 +1,45 @@ +import { SVGProps } from "react"; + +export function ShieldKeyhole(props: SVGProps) { + return ( + + + + + + + + ); +} diff --git a/packages/ui/src/icons/nucleo/user-crown.tsx b/packages/ui/src/icons/nucleo/user-crown.tsx new file mode 100644 index 0000000000..a634a69282 --- /dev/null +++ b/packages/ui/src/icons/nucleo/user-crown.tsx @@ -0,0 +1,40 @@ +import { SVGProps } from "react"; + +export function UserCrown(props: SVGProps) { + return ( + + + + + + + + ); +} diff --git a/packages/ui/src/icons/nucleo/users-settings.tsx b/packages/ui/src/icons/nucleo/users-settings.tsx new file mode 100644 index 0000000000..eb7f656b25 --- /dev/null +++ b/packages/ui/src/icons/nucleo/users-settings.tsx @@ -0,0 +1,140 @@ +import { SVGProps } from "react"; + +export function UsersSettings(props: SVGProps) { + return ( + + + + + + + + + + + + + + + + + ); +} diff --git a/packages/ui/src/icons/nucleo/users2.tsx b/packages/ui/src/icons/nucleo/users2.tsx new file mode 100644 index 0000000000..be1e95354b --- /dev/null +++ b/packages/ui/src/icons/nucleo/users2.tsx @@ -0,0 +1,50 @@ +import { SVGProps } from "react"; + +export function Users2(props: SVGProps) { + return ( + + + + + + + + + ); +} diff --git a/packages/ui/src/icons/nucleo/versions2.tsx b/packages/ui/src/icons/nucleo/versions2.tsx new file mode 100644 index 0000000000..ec36f5baea --- /dev/null +++ b/packages/ui/src/icons/nucleo/versions2.tsx @@ -0,0 +1,46 @@ +import { SVGProps } from "react"; + +export function Versions2(props: SVGProps) { + return ( + + + + + + + + ); +}