import * as React from "react" import type { IconProps } from "../types" const ServerStack = React.forwardRef( ({ color = "currentColor", ...props }, ref) => { return ( ) } ) ServerStack.displayName = "ServerStack" export default ServerStack