UNPKG

@piste-icons/react

Version:

React components for ski trail difficulty symbols

4 lines (3 loc) 427 B
import { jsx as _jsx } from "react/jsx-runtime"; import { COLORS } from './constants.js'; export const ArrowDownRight = ({ 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: "m6.343 3.515 11.314 11.313-2.829 2.829L3.515 6.343ZM4.93 15.03h14.14v4.04H4.93ZM19.07 4.929V19.07h-4.04V4.93Z" }) }));