@piste-icons/react
Version:
React components for ski trail difficulty symbols
4 lines (3 loc) • 385 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { COLORS } from './constants.js';
export const TerrainPark = ({ color = 'orange', 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: "M7 7h10c2.77 0 5 2.23 5 5s-2.23 5-5 5H7c-2.77 0-5-2.23-5-5s2.23-5 5-5" }) }));