@yamada-ui/loading
Version:
Yamada UI loading components
15 lines (12 loc) • 347 B
TypeScript
import * as _yamada_ui_core from '@yamada-ui/core';
import { IconProps } from '@yamada-ui/icon';
interface DotsProps extends IconProps {
/**
* The CSS `dur` property.
*
* @default '1s'
*/
duration?: IconProps["dur"];
}
declare const Dots: _yamada_ui_core.Component<"svg", DotsProps>;
export { Dots, type DotsProps };