How to use the Celine icon
import { CelineLogo } from "@/assets/icons/celineLogo"
export default function Example() {
return <CelineLogo width="32px" height="32px" />
}Brands icon
Copy the Celine 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/1114813829
// Asset license: Public domain textlogo
// Optimized, converted to monochrome currentColor JSX, and parameterized by JSXIcons.
export const CelineLogo = ({ width = "40px", height = "40px", color = "#000000", ...props }) => (
<svg {...props} width={width} height={height} viewBox="0 0 160 33" xmlns="http://www.w3.org/2000/svg" fill={color} color={color}>
<path fill="currentColor" fillRule="evenodd" d="M145.049 27.863V18.63h10.216V13.91h-10.216v-7.32h12.667V1.872h-17.897v30.707h19.202v-4.716zm-14.378 5.897.04-31.928h-5.23l.082 20.213L102.602.98l-.041 31.599h5.23l-.083-19.44zm-37.266-1.182.003-30.746h-5.229l-.005 30.746zm-29.944.001h18.181v-4.716H68.691V1.833h-5.23zm-27.048 0h19.203v-4.716H41.643V18.63h10.214V13.91H41.643v-7.32h12.666V1.872H36.413zM5.848 17.044c0-5.858 4.086-11.185 11.032-11.185 3.187 0 6.332 1.138 8.498 3.253l2.778-3.62c-1.021-1.22-4.944-4.351-11.276-4.351C7.074 1.141.291 8.542.291 17.165c0 8.827 7.15 16.147 17.159 16.147 4.412 0 8.09-1.422 10.91-4.107l-2.412-3.377c-1.225 1.222-4.37 2.808-8.252 2.808-6.987 0-11.849-5.165-11.849-11.592" clipRule="evenodd"/>
</svg>
)
import { CelineLogo } from "@/assets/icons/celineLogo"
export default function Example() {
return <CelineLogo 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.