@lapidist/components
Version:
Lapidist components
11 lines (10 loc) • 356 B
TypeScript
import { BaseProps } from '../types';
export type LogoAnimationType = 'fade' | 'slide';
export interface LogoProps {
readonly animation?: LogoAnimationType;
}
declare const Logo: {
({ className, as, testId, animation, ...restProps }: BaseProps & LogoProps): import("react/jsx-runtime").JSX.Element;
displayName: string;
};
export default Logo;