JSXIcons.com

Brands icon

Radix UI JSX Icon

Copy the Radix UI icon as an optimized JSX SVG component for React, Next.js, dashboards, landing pages and Tailwind interfaces.

Browse all icons
ComponentRadixuiLogo
FileradixuiLogo.jsx
CategoryBrands

Copy-ready code

Radix UI React JSX component

// Source: https://raw.githubusercontent.com/simple-icons/simple-icons/develop/icons/radixui.svg
// Asset license: Simple Icons CC0 1.0 Universal. Brand names and marks remain trademarks of their respective owners.
export const RadixuiLogo = ({ width = "40px", height = "40px", color = "#161618", ...props }) => (
  <svg {...props} width={width} height={height} viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill={color}>
    <path d="M11.52 24a7.68 7.68 0 0 1-7.68-7.68 7.68 7.68 0 0 1 7.68-7.68V24Zm0-24v7.68H3.84V0h7.68Zm4.8 7.68a3.84 3.84 0 1 1 0-7.68 3.84 3.84 0 0 1 0 7.68Z"/>
  </svg>
)

How to use the Radix UI icon

import { RadixuiLogo } from "@/assets/icons/radixuiLogo"

export default function Example() {
  return <RadixuiLogo width="32px" height="32px" />
}

Built for the web

Use it in your stack

This copy-ready component works in React and Next.js projects, and the SVG can be adapted for any interface.

ReactNext.jsJSXSVGBrands icons

Looking for a similar mark? Browse the related icons below or explore the full brands collection.

Related JSX icons

FAQ

Is the Radix UI JSX icon free?

Yes. You can copy the JSX component and use it in React and Next.js projects.

Can I customize it?

Yes. Edit the SVG attributes or pass className, width, height and color props depending on the component.