UNPKG

@piste-icons/react

Version:

React components for ski trail difficulty symbols

4 lines (3 loc) 385 B
import { jsx as _jsx } from "react/jsx-runtime"; import { COLORS } from './constants.js'; export const Circle = ({ color = 'green', 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: "M22 12a10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2a10 10 0 0 1 10 10" }) }));