function getRadioSize(radio: string) {
  switch (radio) {
    case 'none':
      return 'rounded-none';
    case 'xs':
      return 'rounded-xs';
    case 'sm':
      return 'rounded-sm';
    case 'md':
      return 'rounded-md';
    case 'lg':
      return 'rounded-lg';
    case 'xl':
      return 'rounded-xl';
    case 'xll':
      return 'rounded-2xl';
    case 'full':
      return 'rounded-full';
    default:
      return 'rounded-none';
  }
}

export { getRadioSize };
