Spaces:
Running
Running
export const Ribbon4Left = ({ 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 0H0l4.21 4L0 8l4.21 4L0 16l4.21 4L0 24l4.21 4L0 32h16V0z" | |
fill={color} | |
/> | |
</svg> | |
); | |
}; | |
export const Ribbon4Right = ({ 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 0H0l4.21 4L0 8l4.21 4L0 16l4.21 4L0 24l4.21 4L0 32h16V0z" | |
fill={color} | |
/> | |
</svg> | |
); | |
}; | |
export const MiniRibbon4 = () => { | |
return ( | |
<div className="flex items-start justify-center w-full"> | |
<Ribbon4Left /> | |
<div className="w-full flex-1 bg-[#43444A] h-[28px]" /> | |
<Ribbon4Right /> | |
</div> | |
); | |
}; | |