26 lines
620 B
TypeScript
26 lines
620 B
TypeScript
import type { SVGProps } from "react";
|
|
|
|
export default function BarrierIcon(props: SVGProps<SVGSVGElement>) {
|
|
return (
|
|
<svg
|
|
viewBox="0 0 24 24"
|
|
fill="none"
|
|
stroke="currentColor"
|
|
strokeWidth="2"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
aria-hidden="true"
|
|
{...props}
|
|
>
|
|
<path d="M3 20h18" />
|
|
<path d="M6 20v-7a2 2 0 0 1 2-2h1" />
|
|
<path d="M9 11h10.5" />
|
|
<path d="M9 11 20 5" />
|
|
<path d="M11.3 9.75 13 10.7" />
|
|
<path d="M14.8 7.85 16.5 8.8" />
|
|
<path d="M18.3 5.95 20 6.9" />
|
|
<path d="M6 16h2" />
|
|
</svg>
|
|
);
|
|
}
|