/* eslint-disable flowtype/require-exact-type */ // @flow import * as React from "react"; import type { Size, IconForeground, IconProps } from ".."; import type { ThemeProps } from "../../../defaultTheme"; export type GetIconContainer = ({ iconLeft?: React.Node, children?: React.Node, size?: Size, iconForeground: IconForeground, ...ThemeProps, }) => {| icons: IconProps, |}; declare export default GetIconContainer;