@atlaskit/dropdown-menu
Version:
A dropdown menu displays a list of actions or options to a user.
44 lines (43 loc) • 1.4 kB
JavaScript
/* radio-icon.tsx generated by @compiled/babel-plugin v2.0.0 */
import "./radio-icon.compiled.css";
import { ax, ix } from "@compiled/react/runtime";
import React from 'react';
var svgStyles = null;
/**
* __Radio icon__
*
* Used to visually represent the selected state in DropdownItemRadio
*
* @internal
*/
var RadioIcon = function RadioIcon(_ref) {
var checked = _ref.checked;
return /*#__PURE__*/React.createElement("svg", {
width: 24,
height: 24,
viewBox: "0 0 24 24",
style: {
// eslint-disable-next-line @atlaskit/ui-styling-standard/enforce-style-prop
color: checked ? "var(--ds-background-selected-bold, #1868DB)" : "var(--ds-background-input, #FFFFFF)",
// eslint-disable-next-line @atlaskit/ui-styling-standard/enforce-style-prop
fill: checked ? "var(--ds-icon-inverse, #FFFFFF)" : 'transparent'
},
role: "presentation",
className: ax(["_1reo15vq _18m915vq _lswuvuon _lcxvglyw"])
}, /*#__PURE__*/React.createElement("g", {
fillRule: "evenodd"
}, /*#__PURE__*/React.createElement("circle", {
cx: "12",
cy: "12",
r: "7.5",
fill: "currentColor",
stroke: checked ? "var(--ds-border-selected, #1868DB)" : "var(--ds-border-input, #8C8F97)",
strokeWidth: "1"
}), /*#__PURE__*/React.createElement("circle", {
cx: "12",
cy: "12",
r: "3",
fill: "inherit"
})));
};
export default RadioIcon;