styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
15 lines (14 loc) • 776 B
JavaScript
import { __assign } from "tslib";
import * as React from 'react';
import { StyledIconBase } from '../../StyledIconBase';
export var Vuejs = React.forwardRef(function (props, ref) {
var attrs = {
"fill": "currentColor",
"xmlns": "http://www.w3.org/2000/svg",
};
return (React.createElement(StyledIconBase, __assign({ iconAttrs: attrs, iconVerticalAlign: "middle", iconViewBox: "0 0 24 24" }, props, { ref: ref }),
React.createElement("path", { d: "M12 12.765l5.592-9.437h-3.276L12 7.33v.002L9.688 3.328h-3.28z", key: "k0" }),
React.createElement("path", { d: "M18.461 3.332L12 14.235 5.539 3.332H1.992L12 20.672l10.008-17.34z", key: "k1" })));
});
Vuejs.displayName = 'Vuejs';
export var VuejsDimensions = { height: 24, width: 24 };