import type { InputHTMLAttributes, ReactNode } from 'react';
type PlatformPillSwitchProps = Omit<
InputHTMLAttributes,
'children' | 'type'
> & {
label: ReactNode;
};
/**
* 平台胶囊开关。
* 统一承载图片面板中类似 AI 重绘的 label + switch 语义和视觉。
*/
export function PlatformPillSwitch({
label,
checked,
disabled,
className,
...inputProps
}: PlatformPillSwitchProps) {
return (
);
}