How to use the Ninjasweb icon
import { NinjaswebLogo } from "@/assets/icons/ninjaswebLogo"
export default function Example() {
return <NinjaswebLogo width="32px" height="32px" />
}Ninjasweb icon
Copy the Ninjasweb icon as an optimized JSX SVG component for React, Next.js, dashboards, landing pages and Tailwind interfaces.
Copy-ready code
export const NinjaswebLogo = ({ width = "40px", height = "40px", color = "#000", ...props }) => (
<svg {...props} width={width} height={height} fill={color} id="Layer_2" data-name="Layer 2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 124 124">
<g id="Layer_1-2" data-name="Layer 1">
<path d="m62,0C27.8,0,0,27.8,0,62s27.8,62,62,62,62-27.8,62-62S96.2,0,62,0Zm0,70c-27.6,0-50-8.1-50-18s22.4-18,50-18,50,6,50,18-22.4,18-50,18Z" />
<circle strokeWidth={0} cx="42" cy="52" r="8" />
<circle strokeWidth={0} cx="82" cy="52" r="8" />
</g>
</svg>
);
import { NinjaswebLogo } from "@/assets/icons/ninjaswebLogo"
export default function Example() {
return <NinjaswebLogo width="32px" height="32px" />
}Built for the web
This copy-ready component works in React and Next.js projects, and the SVG can be adapted for any interface.
Looking for a similar mark? Browse the related icons below or explore the full ninjasweb collection.
Yes. You can copy the JSX component and use it in React and Next.js projects.
Yes. Edit the SVG attributes or pass className, width, height and color props depending on the component.