@cimpress/react-components
Version:
React components to support the MCP styleguide
20 lines • 1.21 kB
JavaScript
var __rest = (this && this.__rest) || function (s, e) {
var t = {};
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
t[p] = s[p];
if (s != null && typeof Object.getOwnPropertySymbols === "function")
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
t[p[i]] = s[p[i]];
}
return t;
};
import React from 'react';
import cvar from '../theme/cvar';
export const RadioIcon = (props) => {
const { size = '16px', color = cvar('color-button-primary'), backgroundColor = 'none', selected = false, className = '' } = props, rest = __rest(props, ["size", "color", "backgroundColor", "selected", "className"]);
return (React.createElement("svg", Object.assign({ width: size, height: size, viewBox: "0 0 24 24", className: className }, rest),
React.createElement("circle", { cx: "12", cy: "12", r: "10", stroke: color, strokeWidth: "2", fill: backgroundColor }),
selected && React.createElement("circle", { cx: "12", cy: "12", r: "5", fill: color })));
};
//# sourceMappingURL=RadioIcon.js.map