import * as React from "react"; import { IconProps, defaultProps } from "./types"; export function Menu(props: IconProps) { const { size, strokeWidth, ...rest } = { ...defaultProps, ...props }; return ( ); }