contentfultree/dist/Icons.d.ts
2023-05-31 10:59:33 +02:00

10 lines
345 B
TypeScript

import { type FC, type ReactElement, type SVGProps } from 'react';
export 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>;