import * as React from "react";
import { Feld, Switch } from "@audi-dash/ui";
function Root({ children }: { children: React.ReactNode }) {
return (
{children}
);
}
export function ReadOnlyValue() {
return (
);
}
export function WithUnit() {
return (
);
}
export function WithControl() {
const [on, setOn] = React.useState(true);
return (
);
}