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

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

const I: Icon = ({...props }: IconProps) => (
  <IconBase {...props} weights={weights} name="toilet-paper" />
)
/** @deprecated Use ToiletPaperIcon */
export const ToiletPaper = I
export { I as ToiletPaperIcon }