@ebay/ui-core-react
Version:
Skin components build off React
9 lines • 337 B
TypeScript
import { ComponentProps, FC } from "react";
import { EbayIcon } from "../ebay-icon";
import { Icon } from "./types";
export type EbayFlagIconProps = Omit<ComponentProps<typeof EbayIcon>, "name"> & {
name: Icon;
};
declare const EbayFlagIcon: FC<EbayFlagIconProps>;
export default EbayFlagIcon;
//# sourceMappingURL=flag-icon.d.ts.map