dumi
Version:
📖 Documentation Generator of React Component
14 lines (13 loc) • 371 B
TypeScript
import { SocialTypes } from "../../../theme-api/types";
import { FunctionComponent, type FC } from 'react';
import './index.less';
export type SocialIconProps = {
icon: SocialTypes;
link: string;
};
export type PresetSocialIcon = {
Icon: FunctionComponent;
titleIntlId: string;
};
declare const SocialIcon: FC<SocialIconProps>;
export default SocialIcon;