@geezee/react-ui
Version:
Modern and minimalist React UI library.
29 lines (27 loc) • 927 B
JavaScript
import _JSXStyle from "styled-jsx/style";
import React from 'react';
import withDefaults from '../utils/with-defaults';
var defaultProps = {
width: '1.25em'
};
var SelectIcon = function SelectIcon(_ref) {
var width = _ref.width;
return /*#__PURE__*/React.createElement("svg", {
viewBox: "0 0 24 24",
width: width,
height: width,
strokeWidth: "1",
strokeLinecap: "round",
strokeLinejoin: "round",
fill: "none",
shapeRendering: "geometricPrecision",
className: "jsx-3859518410"
}, /*#__PURE__*/React.createElement("path", {
d: "M6 9l6 6 6-6",
className: "jsx-3859518410"
}), /*#__PURE__*/React.createElement(_JSXStyle, {
id: "3859518410"
}, "svg.jsx-3859518410{color:inherit;stroke:currentColor;-webkit-transition:all 200ms ease;transition:all 200ms ease;}"));
};
var MemoSelectIcon = React.memo(SelectIcon);
export default withDefaults(MemoSelectIcon, defaultProps);