How to use the Converse icon
import { ConverseLogo } from "@/assets/icons/converseLogo"
export default function Example() {
return <ConverseLogo width="32px" height="32px" />
}Brands icon
Copy the Converse 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/1115267393
// Asset license: Public domain textlogo
// Optimized, converted to monochrome currentColor JSX, and parameterized by JSXIcons.
export const ConverseLogo = ({ width = "40px", height = "40px", color = "#000000", ...props }) => (
<svg {...props} width={width} height={height} viewBox="0 0 1000 671.62" xmlns="http://www.w3.org/2000/svg" fill={color} color={color}>
<g><g><path d="m116.462 118.176-.12-29.877 28.604-10.611-28.807-9.435-.604-29.436-17.474 23.75-28.585-8.812 16.593 24.931-16.197 24.977 28.213-9.35z" transform="translate(-20.167 -25.345)scale(3.39466)"/><path d="M120.035 149.581h51.235l64.214-71.014-64.524-71.1H120.22l60.347 70.996z" transform="translate(-20.167 -25.345)scale(3.39466)"/></g><g><path d="M5.94 187.806c0-9.229 7.803-18.305 18.466-18.305 7.263 0 15.414 8.19 15.414 8.19l-8.831 5.137s-1.459-3.853-6.904-3.853c-5.536 0-8.793 4.545-8.831 8.67-.043 4.611 3.737 8.67 8.51 8.67 3.744 0 7.706-4.014 7.706-4.014l7.547 5.46s-5.647 6.904-15.093 6.904c-9.465 0-17.983-5.708-17.983-16.86" transform="translate(-20.167 -25.345)scale(3.39466)"/><path d="M61 169.969c-9.932 0-17.969 7.933-17.969 17.687S51.068 205.312 61 205.312s18-7.901 18-17.656-8.068-17.687-18-17.687m0 8.844c4.966 0 9 3.966 9 8.843s-4.034 8.813-9 8.813-8.969-3.936-8.969-8.813 4.003-8.844 8.969-8.844M85.75 170.469v33.062h8.656v-17.869l14.281 17.87h8.532v-33.063h-8.688v19.322l-14.125-19.322zM124.281 170.469l11.688 33.062h12.875l11.687-33.062h-9.469l-8.656 26.25-8.656-26.25zM166.75 170.469v33.062h26.594v-7.625h-17.938v-5.531h16.125v-6.75h-16.125v-5.281h17.938v-7.875zM273.928 170.469v33.062h26.593v-7.625h-17.937v-5.531h16.125v-6.75h-16.125v-5.281h17.937v-7.875zM203.125 171.094v32.594h7.688v-12.844h4.406l6.75 12.844h9.906l-6.687-13.938c8.694-5.213 6.973-16.125-2.72-18.656zm7.531 7.875h8.875c3.084 0 2.884 4.781 0 4.781h-8.875z" transform="translate(-20.167 -25.345)scale(3.39466)"/><path d="M236.494 199.122c.341 2.044 8.398 5.904 16.35 5.904 7.301 0 13.17-3.506 13.17-10.464 0-8.559-9.991-10.54-9.991-10.54s-8.301-.117-8.516-3.974c-.1-1.814 2.428-2.838 4.655-2.838 3.647 0 7.72 3.633 7.72 3.633l5.791-6.244s-7.326-5.79-13.51-5.79c-5.906 0-14.306 3.867-14.306 11.92 0 6.853 9.723 10.005 9.723 10.005s10.26 1.092 10.26 4.301c0 2.184-3.721 2.839-5.905 2.839-5.3 0-9.764-4.655-9.764-4.655z" transform="translate(-20.167 -25.345)scale(3.39466)"/></g></g>
</svg>
)
import { ConverseLogo } from "@/assets/icons/converseLogo"
export default function Example() {
return <ConverseLogo 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.