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