Files
documentation/node_modules/@docusaurus/theme-classic/lib/theme/Icon/Menu/index.js
2024-03-22 03:47:51 +05:30

32 lines
665 B
JavaScript

/**
* 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';
export default function IconMenu({
width = 30,
height = 30,
className,
...restProps
}) {
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>
);
}