gitextract_rjd6bn1q/ ├── .dumirc.ts ├── .editorconfig ├── .eslintrc.js ├── .fatherrc.ts ├── .github/ │ ├── dependabot.yml │ └── workflows/ │ ├── react-component-ci.yml │ └── site-deploy.yml ├── .gitignore ├── .husky/ │ └── pre-commit ├── .prettierrc ├── HISTORY.md ├── LICENSE.md ├── README.md ├── assets/ │ ├── index.less │ └── motion.less ├── bunfig.toml ├── docs/ │ ├── demo/ │ │ ├── basic.md │ │ ├── custom-icon.md │ │ ├── fragment.md │ │ └── simple.md │ ├── examples/ │ │ ├── _util/ │ │ │ └── motionUtil.ts │ │ ├── basic.tsx │ │ ├── custom-icon.tsx │ │ ├── fragment.tsx │ │ └── simple.tsx │ └── index.md ├── jest.config.js ├── package.json ├── src/ │ ├── Collapse.tsx │ ├── Panel.tsx │ ├── PanelContent.tsx │ ├── hooks/ │ │ └── useItems.tsx │ ├── index.tsx │ └── interface.ts ├── tests/ │ ├── __snapshots__/ │ │ └── index.spec.tsx.snap │ ├── index.spec.tsx │ └── setupAfterEnv.ts ├── tsconfig.json └── vercel.json