import React from 'react'; import { Switch as RACSwitch, type SwitchProps as RACSwitchProps, } from 'react-aria-components'; export interface SwitchProps extends Omit { children: React.ReactNode; } export function Switch({ children, ...props }: SwitchProps) { return (
{children} ); }