/* GENERATED FILE */
import { type Icon, type IconProps } from 'phosphor-react-native'

import IconBase from '../lib/icon-base'
import weights from '../defs/Rows'

const I: Icon = ({...props }: IconProps) => (
  <IconBase {...props} weights={weights} name="rows" />
)
/** @deprecated Use RowsIcon */
export const Rows = I
export { I as RowsIcon }