import * as React from "react"; import { IconShapes } from "../../icon/components/Icon"; import { IconSize } from "../../shared/types/iconSize"; interface IconPropAdapterProps { color?: string; icon: IconShapes | React.ReactElement; size?: IconSize; } declare const IconPropAdapter: ({ icon, color, size }: IconPropAdapterProps) => React.JSX.Element; export default IconPropAdapter;