| /** |
| * Copyright (c) Facebook, Inc. and its affiliates. |
| * |
| * This source code is licensed under the MIT license found in the |
| * LICENSE file in the root directory of this source tree. |
| */ |
| |
| import React from 'react'; |
| import type {Props} from '@theme/Icon/Menu'; |
| |
| export default function IconMenu({ |
| width = 30, |
| height = 30, |
| className, |
| ...restProps |
| }: Props): JSX.Element { |
| return ( |
| <svg |
| className={className} |
| width={width} |
| height={height} |
| viewBox="0 0 30 30" |
| aria-hidden="true" |
| {...restProps}> |
| <path |
| stroke="currentColor" |
| strokeLinecap="round" |
| strokeMiterlimit="10" |
| strokeWidth="2" |
| d="M4 7h22M4 15h22M4 23h22" |
| /> |
| </svg> |
| ); |
| } |