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

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

const I: Icon = ({...props }: IconProps) => (
  <IconBase {...props} weights={weights} name="align-center-horizontal-simple" />
)
/** @deprecated Use AlignCenterHorizontalSimpleIcon */
export const AlignCenterHorizontalSimple = I
export { I as AlignCenterHorizontalSimpleIcon }