mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-09-16 20:44:56 +02:00
32 lines
665 B
JavaScript
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>
|
|
);
|
|
}
|