lego icon
lego-duotone from Phosphor by Phosphor Icons · Duotone · MIT Free for personal and commercial use.
- Name
- lego-duotone
- Set
- Phosphor
- Style
- Duotone
- Viewbox
- 256×256
- License
- MIT
5 other variants in Phosphor
The same icon in other sets
Related icons in Phosphor
Use the lego icon
SVG
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 256 256"><g fill="currentColor"><path d="M240 80v64L80 224v-64Z" opacity=".2"/><path d="M243.58 72.84L197.29 49.7C191.54 39.24 177.21 32 160 32c-22.43 0-40 12.3-40 28a20.8 20.8 0 0 0 1.06 6.53l-19.52 9.76A53.7 53.7 0 0 0 80 72c-22.43 0-40 12.3-40 28a20.8 20.8 0 0 0 1.06 6.53l-28.64 14.31A8 8 0 0 0 8 128v64a8 8 0 0 0 4.42 7.16l64 32a8 8 0 0 0 7.16 0l160-80A8 8 0 0 0 248 144V80a8 8 0 0 0-4.42-7.16M80 151.06L33.89 128L51 119.45c7.24 5.29 17.48 8.55 29 8.55c22.43 0 40-12.3 40-28a21.77 21.77 0 0 0-4.35-12.88L131 79.45c7.24 5.29 17.48 8.55 29 8.55c18.38 0 33.49-8.26 38.35-19.88L222.11 80ZM160 48c13.74 0 24 6.34 24 12s-10.26 12-24 12s-24-6.34-24-12s10.26-12 24-12M80 88c13.74 0 24 6.34 24 12s-10.26 12-24 12c-9.67 0-17.61-3.14-21.47-7a8 8 0 0 0-.84-.93A6.62 6.62 0 0 1 56 100c0-5.66 10.26-12 24-12m-56 52.94l48 24v46.12l-48-24Zm64 70.12v-46.12l144-72v46.12Z"/></g></svg>
React
import type { SVGProps } from "react";
export function PhLegoDuotone(props: SVGProps<SVGSVGElement>) {
return (
<svg {...props} xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 256 256"><g fill="currentColor"><path d="M240 80v64L80 224v-64Z" opacity=".2"/><path d="M243.58 72.84L197.29 49.7C191.54 39.24 177.21 32 160 32c-22.43 0-40 12.3-40 28a20.8 20.8 0 0 0 1.06 6.53l-19.52 9.76A53.7 53.7 0 0 0 80 72c-22.43 0-40 12.3-40 28a20.8 20.8 0 0 0 1.06 6.53l-28.64 14.31A8 8 0 0 0 8 128v64a8 8 0 0 0 4.42 7.16l64 32a8 8 0 0 0 7.16 0l160-80A8 8 0 0 0 248 144V80a8 8 0 0 0-4.42-7.16M80 151.06L33.89 128L51 119.45c7.24 5.29 17.48 8.55 29 8.55c22.43 0 40-12.3 40-28a21.77 21.77 0 0 0-4.35-12.88L131 79.45c7.24 5.29 17.48 8.55 29 8.55c18.38 0 33.49-8.26 38.35-19.88L222.11 80ZM160 48c13.74 0 24 6.34 24 12s-10.26 12-24 12s-24-6.34-24-12s10.26-12 24-12M80 88c13.74 0 24 6.34 24 12s-10.26 12-24 12c-9.67 0-17.61-3.14-21.47-7a8 8 0 0 0-.84-.93A6.62 6.62 0 0 1 56 100c0-5.66 10.26-12 24-12m-56 52.94l48 24v46.12l-48-24Zm64 70.12v-46.12l144-72v46.12Z"/></g></svg>
);
}
Vue
<template> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 256 256"><g fill="currentColor"><path d="M240 80v64L80 224v-64Z" opacity=".2"/><path d="M243.58 72.84L197.29 49.7C191.54 39.24 177.21 32 160 32c-22.43 0-40 12.3-40 28a20.8 20.8 0 0 0 1.06 6.53l-19.52 9.76A53.7 53.7 0 0 0 80 72c-22.43 0-40 12.3-40 28a20.8 20.8 0 0 0 1.06 6.53l-28.64 14.31A8 8 0 0 0 8 128v64a8 8 0 0 0 4.42 7.16l64 32a8 8 0 0 0 7.16 0l160-80A8 8 0 0 0 248 144V80a8 8 0 0 0-4.42-7.16M80 151.06L33.89 128L51 119.45c7.24 5.29 17.48 8.55 29 8.55c22.43 0 40-12.3 40-28a21.77 21.77 0 0 0-4.35-12.88L131 79.45c7.24 5.29 17.48 8.55 29 8.55c18.38 0 33.49-8.26 38.35-19.88L222.11 80ZM160 48c13.74 0 24 6.34 24 12s-10.26 12-24 12s-24-6.34-24-12s10.26-12 24-12M80 88c13.74 0 24 6.34 24 12s-10.26 12-24 12c-9.67 0-17.61-3.14-21.47-7a8 8 0 0 0-.84-.93A6.62 6.62 0 0 1 56 100c0-5.66 10.26-12 24-12m-56 52.94l48 24v46.12l-48-24Zm64 70.12v-46.12l144-72v46.12Z"/></g></svg> </template>
CSS
.icon-lego-duotone {
width: 24px;
height: 24px;
background-color: currentColor;
-webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%221em%22%20height%3D%221em%22%20viewBox%3D%220%200%20256%20256%22%3E%3Cg%20fill%3D%22currentColor%22%3E%3Cpath%20d%3D%22M240%2080v64L80%20224v-64Z%22%20opacity%3D%22.2%22%2F%3E%3Cpath%20d%3D%22M243.58%2072.84L197.29%2049.7C191.54%2039.24%20177.21%2032%20160%2032c-22.43%200-40%2012.3-40%2028a20.8%2020.8%200%200%200%201.06%206.53l-19.52%209.76A53.7%2053.7%200%200%200%2080%2072c-22.43%200-40%2012.3-40%2028a20.8%2020.8%200%200%200%201.06%206.53l-28.64%2014.31A8%208%200%200%200%208%20128v64a8%208%200%200%200%204.42%207.16l64%2032a8%208%200%200%200%207.16%200l160-80A8%208%200%200%200%20248%20144V80a8%208%200%200%200-4.42-7.16M80%20151.06L33.89%20128L51%20119.45c7.24%205.29%2017.48%208.55%2029%208.55c22.43%200%2040-12.3%2040-28a21.77%2021.77%200%200%200-4.35-12.88L131%2079.45c7.24%205.29%2017.48%208.55%2029%208.55c18.38%200%2033.49-8.26%2038.35-19.88L222.11%2080ZM160%2048c13.74%200%2024%206.34%2024%2012s-10.26%2012-24%2012s-24-6.34-24-12s10.26-12%2024-12M80%2088c13.74%200%2024%206.34%2024%2012s-10.26%2012-24%2012c-9.67%200-17.61-3.14-21.47-7a8%208%200%200%200-.84-.93A6.62%206.62%200%200%201%2056%20100c0-5.66%2010.26-12%2024-12m-56%2052.94l48%2024v46.12l-48-24Zm64%2070.12v-46.12l144-72v46.12Z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E") no-repeat center / contain;
mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%221em%22%20height%3D%221em%22%20viewBox%3D%220%200%20256%20256%22%3E%3Cg%20fill%3D%22currentColor%22%3E%3Cpath%20d%3D%22M240%2080v64L80%20224v-64Z%22%20opacity%3D%22.2%22%2F%3E%3Cpath%20d%3D%22M243.58%2072.84L197.29%2049.7C191.54%2039.24%20177.21%2032%20160%2032c-22.43%200-40%2012.3-40%2028a20.8%2020.8%200%200%200%201.06%206.53l-19.52%209.76A53.7%2053.7%200%200%200%2080%2072c-22.43%200-40%2012.3-40%2028a20.8%2020.8%200%200%200%201.06%206.53l-28.64%2014.31A8%208%200%200%200%208%20128v64a8%208%200%200%200%204.42%207.16l64%2032a8%208%200%200%200%207.16%200l160-80A8%208%200%200%200%20248%20144V80a8%208%200%200%200-4.42-7.16M80%20151.06L33.89%20128L51%20119.45c7.24%205.29%2017.48%208.55%2029%208.55c22.43%200%2040-12.3%2040-28a21.77%2021.77%200%200%200-4.35-12.88L131%2079.45c7.24%205.29%2017.48%208.55%2029%208.55c18.38%200%2033.49-8.26%2038.35-19.88L222.11%2080ZM160%2048c13.74%200%2024%206.34%2024%2012s-10.26%2012-24%2012s-24-6.34-24-12s10.26-12%2024-12M80%2088c13.74%200%2024%206.34%2024%2012s-10.26%2012-24%2012c-9.67%200-17.61-3.14-21.47-7a8%208%200%200%200-.84-.93A6.62%206.62%200%200%201%2056%20100c0-5.66%2010.26-12%2024-12m-56%2052.94l48%2024v46.12l-48-24Zm64%2070.12v-46.12l144-72v46.12Z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E") no-repeat center / contain;
}Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/ph/lego-duotone.svg?color=%231a73e8&size=48