@formant/ava-react
Version:
React components of AVA.
37 lines • 1.04 kB
JavaScript
import React from 'react';
var MARGIN_RIGHT = 2;
export var ArrowUp = function ArrowUp() {
return /*#__PURE__*/React.createElement("svg", {
width: "8px",
height: "9px",
style: {
transform: 'rotate(180deg)',
marginRight: MARGIN_RIGHT
},
viewBox: "0 0 8 9",
version: "1.1",
xmlns: "http://www.w3.org/2000/svg"
}, /*#__PURE__*/React.createElement("g", {
transform: "translate(-2.000000, -2.000000)"
}, /*#__PURE__*/React.createElement("polygon", {
fill: "currentColor",
points: "6 11 9.5 2 2.5 2"
})));
};
export var ArrowDown = function ArrowDown() {
return /*#__PURE__*/React.createElement("svg", {
width: "8px",
height: "9px",
viewBox: "0 0 8 9",
style: {
marginRight: MARGIN_RIGHT
},
version: "1.1",
xmlns: "http://www.w3.org/2000/svg"
}, /*#__PURE__*/React.createElement("g", {
transform: "translate(-2.000000, -2.000000)"
}, /*#__PURE__*/React.createElement("polygon", {
fill: "currentColor",
points: "6 11 9.5 2 2.5 2"
})));
};