react-base-guide
Version:
react ui components
10 lines • 820 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const jsx_runtime_1 = require("react/jsx-runtime");
const svg_1 = require("../components/svg");
const ArrowIcon = (props) => {
var _a, _b;
return (0, jsx_runtime_1.jsx)(svg_1.Svg, Object.assign({ viewBox: "0 0 50 50", width: ((_a = props.styled) === null || _a === void 0 ? void 0 : _a.width) || "12px", height: ((_b = props.styled) === null || _b === void 0 ? void 0 : _b.height) || "12px", rotate: props.rotate }, props, { children: (0, jsx_runtime_1.jsx)(svg_1.Polyline, { className: props.className ? props.className + " rgb-stroke" : "rgb-stroke", points: "5,12 25,32 45,12", stroke: props.stroke || "primary", strokeWidth: 4, strokeMiterlimit: 10 }) }));
};
exports.default = ArrowIcon;
//# sourceMappingURL=arrow.js.map