mirror of
https://github.com/hex248/ob248.com.git
synced 2026-02-08 02:33:02 +00:00
11 lines
333 B
TypeScript
11 lines
333 B
TypeScript
import React from 'react';
|
|
export interface IconProps extends React.SVGProps<SVGSVGElement> {
|
|
name: string;
|
|
size?: number | string;
|
|
className?: string;
|
|
}
|
|
export declare function Icon({ name, size, className, ...props }: IconProps): React.JSX.Element | null;
|
|
export declare namespace Icon {
|
|
var displayName: string;
|
|
}
|