
    import * as React from 'react';

    import { IconType } from '../types';

    type SiPostizProps = React.ComponentPropsWithoutRef<'svg'> & {
      /**
       * The title provides an accessible short text description to the SVG
       */
      title?: string;
      /**
       * Hex color or color name or "default" to use the default hex for each icon
       */
      color?: string;
      /**
       * The size of the Icon.
       */
      size?: string | number;
    }

    const defaultColor = '#612BD3';

    const SiPostiz: IconType = React.forwardRef<SVGSVGElement, SiPostizProps>(function SiPostiz({title = 'Postiz', color = 'currentColor', size = 24, ...others }, ref) {
      if (color === 'default') {
        color = defaultColor;
      }

      return (
        <svg
          xmlns='http://www.w3.org/2000/svg'
          width={size}
          height={size}
          fill={color}
          viewBox='0 0 24 24'
          ref={ref}
          {...others}
        >
          <title>{title}</title>
          <path d='M19.902 0a15 15 0 0 0-1.123.063L8.165.886C7.21.96 6.731.996 6.38 1.21a1.72 1.72 0 0 0-.69.805c-.157.38-.12.857-.046 1.814l1.049 13.546c.074.956.111 1.435.326 1.786.188.308.469.55.803.688.38.158.859.121 1.815.047l10.613-.82c.957-.075 1.434-.112 1.785-.327.308-.188.55-.469.688-.803.158-.38.122-.859.047-1.815L21.722 2.585c-.074-.957-.11-1.435-.325-1.786a1.7 1.7 0 0 0-.804-.689c-.19-.079-.404-.109-.69-.11M4.852 3.472l-.293.067c-1.37.316-2.054.474-2.516.86a2.5 2.5 0 0 0-.822 1.317c-.146.584.013 1.27.329 2.639l2.825 12.252c.316 1.37.474 2.054.86 2.516.341.406.802.694 1.317.822.584.146 1.269-.011 2.639-.327l9.384-2.165c1.37-.316 2.054-.475 2.515-.862.305-.255.542-.577.697-.938-.46.11-1.073.157-1.982.227l-9.603.743c-1.4.109-2.101.163-2.658-.069a2.5 2.5 0 0 1-1.178-1.009c-.314-.514-.368-1.214-.477-2.615L4.92 4.393c-.026-.348-.05-.652-.067-.921m7.976.277.091 1.188q.247-.306.645-.528.395-.238.981-.282.538-.043 1.03.126.506.168.907.6.414.412.693 1.14.28.728.361 1.789a8.3 8.3 0 0 1-.024 1.532q-.069.77-.354 1.398-.287.627-.827 1.051-.526.408-1.366.472-.601.045-.962-.085a1.5 1.5 0 0 1-.554-.356l.299 3.85-2.237.745-.963-12.463zm1.077 1.573a.9.9 0 0 0-.538.25q-.255.21-.35.617l.341 4.417q.09.121.272.235a.85.85 0 0 0 .469.075.98.98 0 0 0 .675-.323q.264-.308.388-.764.14-.457.161-1 .037-.56-.006-1.098-.066-.871-.264-1.366-.182-.496-.405-.717-.225-.237-.436-.285a1 1 0 0 0-.307-.04' />
        </svg>
      );
    });

    export { SiPostiz as default, defaultColor };
  