/// import { PolymorphicProps } from '../../utils/Polymorphic'; type OriginalAProps = { children?: React.ReactNode; isShowIcon?: boolean; color?: string; }; export type AProps = PolymorphicProps; export {};