@mikezimm/npmfunctions
Version:
Functions used in my SPFx webparts
17 lines (16 loc) • 548 B
TypeScript
/// <reference types="react" />
import { IDefIcon } from './IElements';
export interface IColoredLine {
color: string | number;
height: string | number;
}
export declare const ColoredLine: ({ color, height }: {
color: any;
height: any;
}) => JSX.Element;
export declare const defProjectIconStyle: IDefIcon;
export declare function ProjectTitleElement(item: any): any;
export declare function MyIcon(item: any, defIcon: IDefIcon): any;
export declare const MySpan: (item: any) => {
render: (item: any) => any;
};