overleaf/services/web/frontend/js/features/ui/components/bootstrap-5/icon-text-button.tsx
Rebeka Dekany b1c40d05f7 Merge pull request #17568 from overleaf/rd-b5-button-fix
[web] Fix the Button component accessibility label

GitOrigin-RevId: 1d157fca370c5e0425890468d7cad169d0261c23
2024-03-28 09:04:02 +00:00

26 lines
704 B
TypeScript

import MaterialIcon from '@/shared/components/material-icon'
import { IconTextButtonProps } from '../types/icon-text-button-props'
import Button from './button'
export default function IconTextButton({
children,
className,
leadingIcon,
size = 'default',
trailingIcon,
...props
}: IconTextButtonProps) {
const materialIconClassName = size === 'large' ? 'icon-large' : 'icon-small'
return (
<Button size={size} {...props}>
{leadingIcon && (
<MaterialIcon type={leadingIcon} className={materialIconClassName} />
)}
{children}
{trailingIcon && (
<MaterialIcon type={trailingIcon} className={materialIconClassName} />
)}
</Button>
)
}