enzostvs's picture
enzostvs HF Staff
Upload 172 files
9cd6ddb verified
export const Ribbon2Left = ({ color = "#43444A" }: { color?: string }) => {
return (
<svg
width={32}
height={28}
viewBox="0 0 26 32"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path d="M32 32H14.152l10.42-16-10.42-16H32v32z" fill={color} />
<path
d="M9.098 0l10.414 16L9.098 32H0l10.694-16L0 0h9.098z"
fill={color}
/>
</svg>
);
};
export const Ribbon2Right = ({ color = "#43444A" }: { color?: string }) => {
return (
<svg
width={32}
height={28}
viewBox="0 0 26 32"
fill="none"
style={{
transform: "scaleX(-1)",
}}
xmlns="http://www.w3.org/2000/svg"
>
<path d="M32 32H14.152l10.42-16-10.42-16H32v32z" fill={color} />
<path
d="M9.098 0l10.414 16L9.098 32H0l10.694-16L0 0h9.098z"
fill={color}
/>
</svg>
);
};
export const MiniRibbon2 = () => {
return (
<div className="flex items-start justify-center w-full">
<Ribbon2Left />
<div className="w-full flex-1 bg-[#43444A] h-[28px]" />
<Ribbon2Right />
</div>
);
};