UNPKG

@onesy/ui-react

Version:
35 lines (34 loc) 865 B
import React from 'react'; import { IBaseElement, IMediaObject } from '../types'; export declare type ILinksItem = { version?: 'primary' | 'secondary' | 'default'; name?: any; url?: string; sensitivity?: string | boolean; share?: boolean; props?: any; }; export declare type ILinks = IBaseElement & { name?: any; short_description?: any; links?: ILinksItem[]; cover?: IMediaObject; profile?: IMediaObject; sensitiveText?: any; sensitiveDescription?: any; share?: boolean; start?: any; end?: any; IconMore?: any; IconShare?: any; ShareProps?: any; ItemShareProps?: any; IconButtonProps?: any; IconProps?: any; NameProps?: any; ShortDescriptionProps?: any; LinkProps?: any; LinkTypeProps?: any; }; declare const Element: React.FC<ILinks>; export default Element;