How to use the Tom Ford icon
import { TomFordLogo } from "@/assets/icons/tomfordLogo"
export default function Example() {
return <TomFordLogo width="32px" height="32px" />
}Brands icon
Copy the Tom Ford icon as an optimized JSX SVG component for React, Next.js, dashboards, landing pages and Tailwind interfaces.
Copy-ready code
// Source: https://commons.wikimedia.org/wiki/Special:PermanentLink/1254905908
// Asset license: Public domain textlogo
// Optimized, converted to monochrome currentColor JSX, and parameterized by JSXIcons.
export const TomFordLogo = ({ width = "40px", height = "40px", color = "#000000", ...props }) => (
<svg {...props} width={width} height={height} viewBox="0 0 600.2 89.4" xmlns="http://www.w3.org/2000/svg" fill={color} color={color}>
<path d="M396 13.9c-17.1 0-29.1 13.5-29.1 30.7s12.1 30.8 29.4 30.8c17.1 0 29.1-13.5 29.1-30.7-.1-17.2-12.2-30.8-29.4-30.8m0 75.4c-26.5 0-45-19.7-45-44.6C351 19.9 369.7 0 396.3 0c26.5 0 45.1 19.7 45.1 44.6-.1 24.8-18.9 44.7-45.4 44.7M115.3 13.9c-17.1 0-29 13.5-29 30.7s12.1 30.8 29.2 30.8 29.1-13.5 29.1-30.7-12.1-30.8-29.3-30.8m0 75.4c-26.5 0-45.1-19.7-45.1-44.6C70.2 19.9 88.9 0 115.5 0c26.5 0 45.1 19.7 45.1 44.6 0 24.8-18.7 44.7-45.3 44.7m89.3-1.5-23.4-61.9v61.9h-15V1.5h21.6L208.9 57l21-55.5h21.5v86.3h-15.2v-62l-23.5 62zm349.5-72.5h-17V74h17c18.3 0 30-11.9 30-29.2 0-17.1-11.3-29.5-30-29.5m0 72.5h-32.2V1.4h32.4c27.8 0 45.7 18.1 45.7 43.1 0 24.4-17.6 43.3-45.9 43.3m-72-72.5H462v25.4h20.2c11.7 0 18.3-5 18.3-13.1.1-9.5-7.1-12.3-18.4-12.3m20.3 72.5L481 54.4h-19v33.3h-15.1V1.3h38.2c20.1 0 31 9.5 31 25.6 0 14.7-8.3 22.2-18.9 24.7l23 36zM349.6 15.3h-49.1v25.4h45.3v13.8h-45.3v33.3h-15.2V1.4h64.3zM44.7 87.8H29.4V15.3H0V1.4h73.8v13.9H44.7z"/>
</svg>
)
import { TomFordLogo } from "@/assets/icons/tomfordLogo"
export default function Example() {
return <TomFordLogo 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.