How to use the Safari icon
import { SafariLogo } from "@/assets/icons/safariLogo"
export default function Example() {
return <SafariLogo width="32px" height="32px" />
}Brands icon
Copy the Safari icon as an optimized JSX SVG component for React, Next.js, dashboards, landing pages and Tailwind interfaces.
Copy-ready code
export const SafariLogo = ({ width = "40px", height = "40px", ...props }) => (
<svg {...props} width={width} height={height} viewBox="0 0 48 48" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlnsXlink="http://www.w3.org/1999/xlink">
<title>Safari Logo Color</title>
<g id="Icons" stroke="none" strokeWidth="1" fill="none" fillRule="evenodd">
<g id="Color-" transform="translate(-700.000000, -1043.000000)">
<g id="Safari" transform="translate(700.000000, 1043.000000)">
<circle id="Oval" fill="#00ABFF" cx="24" cy="24" r="24"></circle>
<g id="Group" transform="translate(24.388909, 24.176777) rotate(-45.000000) translate(-24.388909, -24.176777) translate(2.888909, 20.676777)">
<g id="Group-2" transform="translate(0.000000, 0.000000)">
<polygon id="Shape" fill="#FFFFFF" points="-3.19744231e-13 3.1 21.35 6.2 22.2921646 0.731192283"></polygon>
<polygon id="Shape" fill="#EE0000" points="42.7 3.1 21.35 6.2 21.35 2.4901204"></polygon>
<polygon id="Shape" fill="#FFFFFF" points="0 3.1 21.35 0 21.35 3.1"></polygon>
<polygon id="Shape" fill="#EE0000" points="21.35 -1.59872116e-13 42.7 3.1 21.35 3.1"></polygon>
</g>
</g>
</g>
</g>
</g>
</svg>
);
import { SafariLogo } from "@/assets/icons/safariLogo"
export default function Example() {
return <SafariLogo 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 brands 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.