import { Check, Minus } from 'lucide-react' import { cn } from 'ui' export interface RoleImpersonationRadioProps { label?: string description?: string value: T isSelected: boolean | 'partially' onSelectedChange: (value: T) => void icon?: React.ReactNode fullWidth?: boolean } export function RoleImpersonationRadio({ label, description, value, isSelected, onSelectedChange, icon, fullWidth = false, }: RoleImpersonationRadioProps) { return ( ) }