UNPKG

adui

Version:

<div> <img src="https://wxa.wxs.qq.com/mpweb/delivery/legacy/wxadtouch/upload/t1/od834zef_52939fc6.png" style="margin:40px 0 0 -8px; background-color: #fcfcfc; box-shadow: none;" /> </div>

16 lines (15 loc) 398 B
import React from "react"; import "./style"; export interface ICollapseProps { className?: string; collapsed?: boolean; content: React.ReactNode; defaultCollapsed?: boolean; header: React.ReactNode; onCollapseChange?: (collapsed: boolean) => void; } /** * 颜色选择器 */ declare const ColorPickerCollapse: React.FC<ICollapseProps>; export default ColorPickerCollapse;