@piste-icons/react
Version:
React components for ski trail difficulty symbols
4 lines (3 loc) • 387 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { COLORS } from './constants.js';
export const ArrowLeft = ({ color = 'black', size = 24 }) => (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", width: size, height: size, children: _jsx("path", { fill: COLORS[color], d: "M22 14H6v-4h16zm-7.143-9.143-10 10L2 12 12 2ZM12 22 2 12l2.857-2.857 10 10z" }) }));