import classNames from 'classnames' import React from 'react' import { bsVersion } from '@/features/utils/bootstrap-5' type IconProps = React.ComponentProps<'i'> & { type: string accessibilityLabel?: string } function MaterialIcon({ type, className, accessibilityLabel, ...rest }: IconProps) { const iconClassName = classNames('material-symbols', className) return ( <> {accessibilityLabel && ( {accessibilityLabel} )} ) } export default MaterialIcon