UNPKG

@amsterdam/design-system-react

Version:

All React components from the Amsterdam Design System. Use it to compose pages in your website or application.

4 lines (3 loc) 608 B
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; const SvgRadio = (props) => (_jsxs("svg", { "aria-hidden": "true", focusable: "false", viewBox: "0 0 24 24", xmlns: "http://www.w3.org/2000/svg", ...props, children: [_jsx("circle", { className: "ams-radio__circle", cx: 12, cy: 12, fill: "none", r: 10, stroke: "black", strokeWidth: "2px" }), _jsx("circle", { className: "ams-radio__hover-indicator", cx: 12, cy: 12, fill: "none", r: 9.5, stroke: "black", strokeWidth: "3px" }), _jsx("circle", { className: "ams-radio__checked-indicator", cx: 12, cy: 12, r: 6 })] })); export default SvgRadio;