File size: 1,064 Bytes
9cd6ddb
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
export const Ribbon6Left = ({ 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 0H0l6.5 10.082H1l6 8.767H3l6.032 9.916c1.21 1.99 3.595 3.235 6.195 3.235H16V0z"
        fill={color}
      />
    </svg>
  );
};
export const Ribbon6Right = ({ 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 0H0l6.5 10.082H1l6 8.767H3l6.032 9.916c1.21 1.99 3.595 3.235 6.195 3.235H16V0z"
        fill={color}
      />
    </svg>
  );
};

export const MiniRibbon6 = () => {
  return (
    <div className="flex items-start justify-center w-full">
      <Ribbon6Left />
      <div className="w-full flex-1 bg-[#43444A] h-[28px] transition-none" />
      <Ribbon6Right />
    </div>
  );
};