import type { IconProps } from "../../icon" import { getIconAriaProps } from "../../utils" import { iconVariants } from "../../variants" export default function BedHotelIcon({ className, color, size = 24, ...props }: IconProps) { const classNames = iconVariants({ className, color }) const ariaProps = getIconAriaProps(props) return ( ) }