quantumai-design-system
Version:
퀀텀에이아이의 디자인 시스템
9 lines (8 loc) • 317 B
TypeScript
/// <reference types="react" />
interface ILogoSymbolProps extends React.SVGProps<SVGSVGElement> {
fill?: string;
width?: number;
height?: number;
}
declare const LogoText: ({ width, height, fill, ...props }: ILogoSymbolProps) => import("@emotion/react/jsx-runtime").JSX.Element;
export default LogoText;