diff --git a/packages/ui-next/src/components/icons/brand/controller.tsx b/packages/ui-next/src/components/icons/brand/controller.tsx new file mode 100644 index 000000000..8f5d5cc1c --- /dev/null +++ b/packages/ui-next/src/components/icons/brand/controller.tsx @@ -0,0 +1,22 @@ +import { forwardRef, memo } from "react"; +import { iconVariants } from "../utils"; +import { IconProps } from "../types"; + +export const ControllerIcon = memo( + forwardRef( + ({ className, size, ...props }, forwardedRef) => ( + + + + + + ), + ), +); + +ControllerIcon.displayName = "ControllerIcon"; diff --git a/packages/ui-next/src/components/icons/brand/index.ts b/packages/ui-next/src/components/icons/brand/index.ts index 1eb3aa3be..8ba210322 100644 --- a/packages/ui-next/src/components/icons/brand/index.ts +++ b/packages/ui-next/src/components/icons/brand/index.ts @@ -4,6 +4,7 @@ export * from "./briq"; export * from "./cartridge"; export * from "./cartridge-face"; export * from "./chrome"; +export * from "./controller"; export * from "./discord"; export * from "./dojo"; export * from "./dope-wars";