
  // This file is generated by running the "icons" bin script.
  // Manual changes might be lost - proceed with caution!
  
  import React, { forwardRef } from 'react'
  import Icon, { IconComponent } from '..'
  
  
  const StarFilledIcon = forwardRef((props, ref) => {
    const { 'aria-label': ariaLabel, ...rest } = props
    
    return (
      <Icon {...rest} ref={ref}>
        <svg aria-label="star filled icon" viewBox="0 0 24 24"role='img' {...(ariaLabel && { 'aria-label': ariaLabel })}><path d="M7.716 13.852 2.253 9.905A.5.5 0 0 1 2.546 9H9.33l2.196-6.58a.5.5 0 0 1 .948 0L14.672 9h6.782a.5.5 0 0 1 .293.905l-5.463 3.947 2.225 6.676a.5.5 0 0 1-.767.564l-5.74-4.146-5.745 4.146a.5.5 0 0 1-.767-.563l2.226-6.677z"/></svg>
      </Icon>
    )
  }) as IconComponent
  
  StarFilledIcon.displayName = "StarFilledIcon"
  StarFilledIcon.colors = Icon.colors
  StarFilledIcon.sizes = Icon.sizes

  export { StarFilledIcon }
  