2022-03-08 18:13:52 +00:00
|
|
|
import classNames from 'classnames';
|
|
|
|
|
2022-03-02 00:43:45 +00:00
|
|
|
export function Vega({ className }: { className?: string }) {
|
2022-03-08 18:13:52 +00:00
|
|
|
const svgClasses = classNames(className, 'fill-current', 'w-[76px] h-[16px]');
|
2022-03-02 00:43:45 +00:00
|
|
|
return (
|
2022-03-09 13:05:42 +00:00
|
|
|
<svg
|
|
|
|
width="86"
|
|
|
|
height="19"
|
|
|
|
viewBox="0 0 86 19"
|
|
|
|
fill="none"
|
2022-03-08 18:13:52 +00:00
|
|
|
className={svgClasses}
|
2022-03-09 13:05:42 +00:00
|
|
|
>
|
|
|
|
<path d="M8.05624 16.4619L13.3478 0.0158333H16.0045L9.45138 18.9881H6.58031L0 0.0158333H2.70328L8.05624 16.4619ZM27.1835 10.3067V16.8372H37.5787V18.9873H24.6884V0.0150417H37.3503V2.16442H27.1835V8.16288H36.2395V10.3067H27.1835ZM47.5793 2.31167H49.8165V16.716H47.5793V2.31167V2.31167ZM58.7676 0V2.31167H49.8157V0H58.7683H58.7676ZM49.8157 19V16.716H58.7683V19H49.8157ZM61.0055 16.716H58.7683V12.1481H54.2924V9.86021H61.0055V16.716ZM61.0055 2.31167V4.59483H58.7683V2.31167H61.0055V2.31167ZM86 18.9873H83.3946L82.0251 15.1668H72.6801L71.3106 18.9873H68.7635L75.9769 0.0150417H78.7936L86 18.9873V18.9873ZM77.3138 2.299L73.4694 13.0213H81.239L77.3674 2.29821H77.313L77.3138 2.299Z" />
|
2022-03-02 00:43:45 +00:00
|
|
|
</svg>
|
|
|
|
);
|
|
|
|
}
|