UNPKG

nice-ui

Version:

React design system, components, and utilities

11 lines (10 loc) 326 B
import * as React from 'react'; export type LogoTheme = [string, string, string, string]; export interface LogoStaticProps { size?: number; grey?: boolean; colors?: 'default' | 'red'; variant?: 'default' | 'round'; style?: React.CSSProperties; } export declare const LogoStatic: React.FC<LogoStaticProps>;