UNPKG

@yamada-ui/loading

Version:

Yamada UI loading components

19 lines (16 loc) 426 B
import * as _yamada_ui_core from '@yamada-ui/core'; import { IconProps } from '@yamada-ui/icon'; interface OvalProps extends IconProps { /** * The CSS `dur` property. * * @default '1s' */ duration?: IconProps["dur"]; /** * The CSS `stroke` property. */ secondaryColor?: string; } declare const Oval: _yamada_ui_core.Component<"svg", OvalProps>; export { Oval, type OvalProps };