react-together-ant-design
Version:
A set of ready-to-use Ant Design components that are synchronized across multiple users in real-time!
29 lines (28 loc) • 497 B
JavaScript
import { jsxs as a } from "react/jsx-runtime";
import { Button as c } from "antd";
import { useStateTogether as f } from "react-together";
function h({
rtKey: o,
onLabel: e = "Yes",
offLabel: n = "No",
onIcon: r,
offIcon: s,
...i
}) {
const [t, l] = f(o, !1);
return /* @__PURE__ */ a(
c,
{
...i,
type: t ? "primary" : "default",
onClick: () => l(!t),
children: [
t ? r : s,
t ? e : n
]
}
);
}
export {
h as default
};