UNPKG

@yamada-ui/loading

Version:

Yamada UI loading components

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