enzostvs's picture
enzostvs HF Staff
Upload 172 files
9cd6ddb verified
raw
history blame contribute delete
892 Bytes
export const Ribbon5Left = ({ color = "#43444A" }: { color?: string }) => {
return (
<svg
width={16}
height={28}
viewBox="0 0 13 32"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path d="M16 0H0l15 16.5L0 32h16V0z" fill={color} />
</svg>
);
};
export const Ribbon5Right = ({ color = "#43444A" }: { color?: string }) => {
return (
<svg
width={16}
height={28}
viewBox="0 0 13 32"
fill="none"
style={{
transform: "scaleX(-1)",
}}
xmlns="http://www.w3.org/2000/svg"
>
<path d="M16 0H0l15 16.5L0 32h16V0z" fill={color} />
</svg>
);
};
export const MiniRibbon5 = () => {
return (
<div className="flex items-start justify-center w-full">
<Ribbon5Left />
<div className="w-full flex-1 bg-[#43444A] h-[28px]" />
<Ribbon5Right />
</div>
);
};