mirror of
https://github.com/RoboSats/robosats.git
synced 2024-12-15 20:06:24 +00:00
12 lines
445 B
TypeScript
12 lines
445 B
TypeScript
|
import React, { Component } from "react";
|
||
|
import { SvgIcon } from "@mui/material"
|
||
|
|
||
|
export default function BasqueCountryFlag(props) {
|
||
|
return (
|
||
|
<SvgIcon {...props} x="0px" y="0px" viewBox="0 0 50 28">
|
||
|
<path d="M0,0 v28 h50 v-28 z" fill="#D52B1E"/>
|
||
|
<path d="M0,0 L50,28 M50,0 L0,28" stroke="#009B48" stroke-width="4.3"/>
|
||
|
<path d="M25,0 v28 M0,14 h50" stroke="#fff" stroke-width="4.3"/>
|
||
|
</SvgIcon>
|
||
|
);
|
||
|
}
|