@nile-ui/nile-ui
Version:
Modern and beautiful looking component designs
12 lines (10 loc) • 346 B
text/typescript
import React from 'react'
import { NileColor, NileSize } from '../../uiTypes'
export interface HeroProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement> {
color?: NileColor
size?: NileSize
halfScreen?: boolean
fullScreen?: boolean
fullScreenWithNavbar?: boolean
className?: string
}