UNPKG

nexpi-ui

Version:

An elegant and minimalist Next.js 14 component library

9 lines (8 loc) 205 B
import React from 'react'; interface ImgProps { src: string; alt: string; style?: React.CSSProperties; } declare const Logo: ({ ...props }: ImgProps) => React.JSX.Element; export default Logo;