UNPKG

@piste-icons/react

Version:

React components for ski trail difficulty symbols

4 lines (3 loc) 428 B
import { jsx as _jsx } from "react/jsx-runtime"; import { COLORS } from './constants.js'; export const ArrowDownLeft = ({ 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: "M20.485 6.343 9.172 17.657l-2.829-2.829L17.657 3.515ZM8.97 4.93v14.14H4.93V4.93zm10.101 14.14H4.93v-4.04h14.14Z" }) }));