UNPKG

@piste-icons/react

Version:

React components for ski trail difficulty symbols

4 lines (3 loc) 425 B
import { jsx as _jsx } from "react/jsx-runtime"; import { COLORS } from './constants.js'; export const ArrowUpLeft = ({ 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: "M17.657 20.485 6.343 9.172l2.829-2.829 11.313 11.314ZM19.07 8.97H4.93V4.93h14.14zM4.93 19.071V4.93h4.04v14.14z" }) }));