@piste-icons/react
Version:
React components for ski trail difficulty symbols
4 lines (3 loc) • 429 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { COLORS } from './constants.js';
export const ArrowUpRight = ({ 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: "M4.222 17.95 15.536 6.636l2.828 2.828L7.05 20.778Zm11.516 1.414V5.222h4.04v14.142zM5.636 5.222h14.142v4.04H5.636z" }) }));