@comfortdelgro/compass-icons
Version:
Icons for React Compass Design System
17 lines (15 loc) • 619 B
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const FontColour = (props, ref)=>/*#__PURE__*/ React.createElement("svg", {
width: "1em",
height: "1em",
viewBox: "0 0 36 36",
ref: ref,
...props
}, /*#__PURE__*/ React.createElement("g", {
fill: "currentColor"
}, /*#__PURE__*/ React.createElement("path", {
d: "M27 25.5H30L19.5 0H16.5L6 25.5H9L11.415 19.5H24.525L27 25.5ZM12.645 16.5L17.805 3.945H18.195L23.31 16.5H12.645ZM3 30H33V36H3V30Z"
})));
const ForwardRef = /*#__PURE__*/ forwardRef(FontColour);
export default ForwardRef;