UNPKG

adou-ui

Version:

feat:修复了TagInput无法清空的问题

16 lines (15 loc) 567 B
import React from "react"; import "./index.scss"; interface RandomArrangeProps { actRef?: any; children?: React.ReactNode; buttonText?: string; onShuffle?: () => void; className?: string; buttonClassName?: string; showButton?: boolean; animationDuration?: number; animationTiming?: string; } declare const RandomArrange: ({ actRef, children, buttonText, onShuffle, className, buttonClassName, showButton, animationDuration, animationTiming, }: RandomArrangeProps) => React.JSX.Element; export default RandomArrange;