@git-temporal/git-temporal-react
Version:
<!-- START doctoc generated TOC please keep comment here to allow auto update --> <!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
14 lines (13 loc) • 882 B
JavaScript
;
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
const react_1 = __importDefault(require("react"));
const styles_1 = require("app/styles");
exports.CaretLeftIcon = (props) => {
const { width = 16, height = 16 } = props;
return (react_1.default.createElement("svg", { width: width, height: height, role: "img", xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 192 512", style: styles_1.style(props.style) },
react_1.default.createElement("path", { fill: "currentColor", d: "M192 127.338v257.324c0 17.818-21.543 26.741-34.142 14.142L29.196 270.142c-7.81-7.81-7.81-20.474 0-28.284l128.662-128.662c12.599-12.6 34.142-3.676 34.142 14.142z" })));
};
exports.CaretLeftIcon.displayName = 'CaretLeftIcon';