/**
 * This file is automatically GENERATED.
 * Manual changes might be lost - proceed with caution!
 *
 * @flow strict
 */

import React, { type Element } from 'react';

type Props = {
  +'data-testid'?: string };


export default function Flag(props: Props): Element<'svg'> {
  return (
    <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 21 21" {...props}>
      <path
      fill="none"
      stroke="currentColor"
      strokeLinecap="round"
      strokeLinejoin="round"
      d="M5.5 17.5v-11m0 0c.667-1.333 1.667-2 3-2 2 0 2 2 4 2 1.333 0 2.333-.333 3-1v6c-.667.667-1.667 1-3 1-2 0-2-2-4-2-1.333 0-2.333.667-3 2z" />

    </svg>);

}