mirror of
https://github.com/foomo/contentfultree.git
synced 2025-10-16 12:25:41 +00:00
10 lines
338 B
TypeScript
10 lines
338 B
TypeScript
import { FC, ReactElement, SVGProps } from 'react';
|
|
export declare type SVGIcon = FC<SVGProps<SVGSVGElement>>;
|
|
export interface IconProps {
|
|
icon?: SVGIcon;
|
|
}
|
|
export declare const Icon: (props: {
|
|
id?: string;
|
|
}) => ReactElement;
|
|
export declare const StyledIcon: import("styled-components").StyledComponent<"span", any, {}, never>;
|