Spaces:
Running
Running
| export const Ribbon3Left = ({ 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 0H6.235L16 16 6.235 32H16V0z" fill={color} /> | |
| <path d="M0 16l6 9 5.189-9L6 7l-6 9z" fill={color} /> | |
| </svg> | |
| ); | |
| }; | |
| export const Ribbon3Right = ({ 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 0H6.235L16 16 6.235 32H16V0z" fill={color} /> | |
| <path d="M0 16l6 9 5.189-9L6 7l-6 9z" fill={color} /> | |
| </svg> | |
| ); | |
| }; | |
| export const MiniRibbon3 = () => { | |
| return ( | |
| <div className="flex items-start justify-center w-full"> | |
| <Ribbon3Left /> | |
| <div className="w-full flex-1 bg-[#43444A] h-[28px]" /> | |
| <Ribbon3Right /> | |
| </div> | |
| ); | |
| }; | |