How to use the Scotiabank icon
import { ScotiabankLogo } from "@/assets/icons/scotiabankLogo"
export default function Example() {
return <ScotiabankLogo width="32px" height="32px" />
}Brands icon
Copy the Scotiabank 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/1201417227
// Asset license: Public domain textlogo
// Optimized, converted to monochrome currentColor JSX, and parameterized by JSXIcons.
export const ScotiabankLogo = ({ width = "40px", height = "40px", color = "#EC111A", ...props }) => (
<svg {...props} width={width} height={height} viewBox="0 0 72.135 10.503" xmlns="http://www.w3.org/2000/svg" fill={color} color={color}>
<path d="M6.73 8.368c.163-.395.241-.821.23-1.248a2.57 2.57 0 0 0-.607-1.723c-.454-.499-1.23-.914-2.304-1.23a3.7 3.7 0 0 1-.607-.216 1.5 1.5 0 0 1-.449-.333.78.78 0 0 1-.194-.551.8.8 0 0 1 .431-.702 2.09 2.09 0 0 1 1.681 0q.358.131.687.321L6.5.888A5.2 5.2 0 0 0 5.206.316 5.8 5.8 0 0 0 3.77.133a3.8 3.8 0 0 0-1.355.223c-.386.15-.737.38-1.03.673-.295.295-.53.646-.687 1.032a3.4 3.4 0 0 0-.23 1.247c.025.68.313 1.324.8 1.798a4.4 4.4 0 0 0 1.603.896c.282.107.593.204.791.28q.307.115.582.295a1 1 0 0 1 .31.36.8.8 0 0 1 .068.435.87.87 0 0 1-.302.583c-.283.205-.63.3-.977.268a3 3 0 0 1-1.187-.284 9 9 0 0 1-.945-.525L.132 9.267a4.82 4.82 0 0 0 3.011 1.096c.545 0 1.086-.085 1.603-.254a3.7 3.7 0 0 0 1.215-.68c.328-.296.59-.657.77-1.06M12.548 7.79a1.567 1.567 0 1 1 0-1.964l1.405-1.41a3.54 3.54 0 0 0-2.627-1.162c-1.958-.007-3.648 1.392-3.648 3.55s1.708 3.56 3.666 3.56a3.56 3.56 0 0 0 2.63-1.165zM17.596 3.247a3.56 3.56 0 0 0-3.56 3.557 3.56 3.56 0 0 0 3.556 3.564 3.56 3.56 0 0 0 3.558-3.561 3.56 3.56 0 0 0-3.554-3.56m0 5.128a1.572 1.572 0 0 1 .015-3.143 1.572 1.572 0 1 1-.015 3.143M25.682 3.415h-.97V1.317h-2.127v2.098h-.97v1.928h.97v4.851h2.127v-4.85h.97zM27.72.133a1.186 1.186 0 1 0-.007 2.372 1.186 1.186 0 0 0 .006-2.372M26.655 3.415h2.125v6.776h-2.125zM37.091 10.202V3.415h-2.07v.72l-.194-.168a2.58 2.58 0 0 0-1.795-.72c-1.83 0-3.375 1.63-3.375 3.557 0 1.926 1.549 3.56 3.375 3.56a2.59 2.59 0 0 0 1.795-.72l.194-.17v.72Zm-3.715-1.798a1.6 1.6 0 0 1-1.592-1.612 1.603 1.603 0 1 1 1.592 1.612M40.265 10.202v-.72l.19.169a2.6 2.6 0 0 0 1.797.72c1.829 0 3.373-1.63 3.373-3.56s-1.544-3.557-3.373-3.557a2.6 2.6 0 0 0-1.797.72l-.19.169V.303H38.19v9.9Zm.043-3.391a1.604 1.604 0 1 1 1.602 1.593c-.883 0-1.6-.717-1.602-1.6zM53.783 10.202V3.415h-2.07v.72l-.194-.168a2.6 2.6 0 0 0-1.797-.72c-1.828 0-3.373 1.63-3.373 3.557 0 1.926 1.549 3.56 3.373 3.56a2.6 2.6 0 0 0 1.797-.72l.195-.17v.72Zm-3.701-1.798a1.604 1.604 0 1 1-.006-3.208 1.604 1.604 0 0 1 .006 3.208M58.193 5.243a1.27 1.27 0 0 1 1.264 1.266v3.693h2.125V6.246c0-1.798-1.04-2.97-2.682-2.97-.675 0-1.386.295-1.972 1.245V3.44H54.8v6.761h2.11V6.51a1.267 1.267 0 0 1 1.283-1.266M69.325 10.194l-2.609-3.387 2.426-3.392h-2.484l-1.95 2.745V.302h-2.124v9.892h2.123V7.401l2.142 2.793zM70.824 7.825a1.186 1.186 0 1 0-.015 2.373 1.186 1.186 0 0 0 .015-2.373m0 2.132a.948.948 0 1 1-.008-1.896.948.948 0 0 1 .008 1.896m0 0"/><path d="M70.82 9.206h-.19v.45h-.23V8.36h.492c.238 0 .431.193.431.431a.43.43 0 0 1-.248.378l.273.485h-.28Zm-.19-.216h.273a.197.197 0 0 0 0-.395h-.273zm0 0"/>
</svg>
)
import { ScotiabankLogo } from "@/assets/icons/scotiabankLogo"
export default function Example() {
return <ScotiabankLogo 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.