@uiw/react-json-view
Version:
JSON viewer for react.
30 lines • 1.34 kB
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import _objectWithoutPropertiesLoose from "@babel/runtime/helpers/objectWithoutPropertiesLoose";
var _excluded = ["style"];
import React from 'react';
import { jsx as _jsx } from "react/jsx-runtime";
export function TriangleSolidArrow(props) {
var {
style
} = props,
reset = _objectWithoutPropertiesLoose(props, _excluded);
var defaultStyle = _extends({
cursor: 'pointer',
height: '1em',
width: '1em',
userSelect: 'none',
display: 'flex'
}, style);
return /*#__PURE__*/_jsx("svg", _extends({
viewBox: "0 0 30 30",
fill: "var(--w-rjv-arrow-color, currentColor)",
height: "1em",
width: "1em",
style: defaultStyle
}, reset, {
children: /*#__PURE__*/_jsx("path", {
d: "M14.1758636,22.5690012 C14.3620957,22.8394807 14.6694712,23.001033 14.9978636,23.001033 C15.326256,23.001033 15.6336315,22.8394807 15.8198636,22.5690012 L24.8198636,9.56900125 C25.0322035,9.2633716 25.0570548,8.86504616 24.8843497,8.5353938 C24.7116447,8.20574144 24.3700159,7.99941506 23.9978636,8 L5.9978636,8 C5.62665,8.00153457 5.28670307,8.20817107 5.11443241,8.53699428 C4.94216175,8.86581748 4.96580065,9.26293681 5.1758636,9.56900125 L14.1758636,22.5690012 Z"
})
}));
}
TriangleSolidArrow.displayName = 'JVR.TriangleSolidArrow';