@nile-ui/nile-ui
Version:
Modern and beautiful looking component designs
21 lines (20 loc) • 481 B
text/typescript
import React from 'react'
import { NileColor, NileSize } from "../../uiTypes"
export interface ButtonProps extends React.DetailedHTMLProps<
React.ButtonHTMLAttributes<HTMLButtonElement>,
HTMLButtonElement
> {
bordered?: boolean
flat?: boolean
color?: NileColor
size?: NileSize
square?: boolean
pill?: boolean
circle?: boolean
block?: boolean
floating?: boolean
noFloat?: boolean
link?: boolean
loading?: boolean
icon?: boolean
}