@comfortdelgro/compass-icons
Version:
Icons for React Compass Design System
24 lines (22 loc) • 704 B
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const FlagIsl = (props, ref)=>/*#__PURE__*/ React.createElement("svg", {
width: "1em",
height: "1em",
viewBox: "0 0 25 18",
ref: ref,
...props
}, /*#__PURE__*/ React.createElement("path", {
d: "M0 0h25v18H0z",
fill: "#02529C"
}), /*#__PURE__*/ React.createElement("path", {
d: "M0 9h25M9 0v18",
strokeWidth: 4,
stroke: "#FFF"
}), /*#__PURE__*/ React.createElement("path", {
d: "M0 9h25M9 0v18",
strokeWidth: 2,
stroke: "#DC1E35"
}));
const ForwardRef = /*#__PURE__*/ forwardRef(FlagIsl);
export default ForwardRef;