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