@piste-icons/react
Version:
React components for ski trail difficulty symbols
4 lines (3 loc) • 383 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { COLORS } from './constants.js';
export const DoubleDiamond = ({ 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: "M15.75 2 22 12l-6.25 10L9.5 12Zm-7.5 0 6.25 10-6.25 9.999-6.25-10Z" }) }));