You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
portainer/app/react/components/buttons/ButtonGroup.tsx

40 lines
744 B

import { PropsWithChildren } from 'react';
import clsx from 'clsx';
export type Size = 'xsmall' | 'small' | 'large';
export interface Props {
size?: Size;
className?: string;
'aria-label'?: string;
}
export function ButtonGroup({
size,
children,
className,
'aria-label': ariaLabel,
}: PropsWithChildren<Props>) {
return (
<div
className={clsx('btn-group', sizeClass(size), className)}
role="group"
aria-label={ariaLabel}
>
{children}
</div>
);
}
function sizeClass(size: Size | undefined) {
switch (size) {
case 'small':
return 'btn-group-sm';
case 'xsmall':
return 'btn-group-xs';
case 'large':
return 'btn-group-lg';
default:
return '';
}
}