@cimpress/react-components
Version:
React components to support the MCP styleguide
5 lines • 496 B
JavaScript
import * as React from 'react';
const SortIndicatorSvg = ({ size, color, style }) => (React.createElement("svg", { width: size, height: size, viewBox: "0 0 24 24", xmlns: "http://www.w3.org/2000/svg", fill: "currentColor", color: color, style: style },
React.createElement("path", { d: "M21.016.531A2 2 0 0 0 19 .563L2.929 10.288a2 2 0 0 0 0 3.422L19 23.436a2 2 0 0 0 3.035-1.711V2.274A2 2 0 0 0 21.016.531z" })));
export default SortIndicatorSvg;
//# sourceMappingURL=SortIndicatorSvg.js.map