@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 -->
15 lines (14 loc) • 889 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.CaretUpIcon = (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 320 512", style: styles_1.style(props.style) },
react_1.default.createElement("path", { fill: "currentColor", d: "M288.662 352H31.338c-17.818 0-26.741-21.543-14.142-34.142l128.662-128.662c7.81-7.81 20.474-7.81 28.284 0l128.662 128.662c12.6 12.599 3.676 34.142-14.142 34.142z" }),
' '));
};
exports.CaretUpIcon.displayName = 'CaretUpIcon';