mirror of
https://github.com/hex248/ob248.com.git
synced 2026-02-08 02:33:02 +00:00
10 lines
290 B
TypeScript
10 lines
290 B
TypeScript
import React from 'react';
|
|
export interface ScriptTextProps extends React.SVGProps<SVGSVGElement> {
|
|
size?: number | string;
|
|
className?: string;
|
|
}
|
|
export declare const ScriptText: {
|
|
({ size, className, ...props }: ScriptTextProps): React.JSX.Element;
|
|
displayName: string;
|
|
};
|