import { forwardRef } from 'react'; import type { IconProps } from './types'; export const Bars = forwardRef(function Bars({ color = 'currentColor', ...props }, ref) { return ( ); });