animated-mui-components
v1.0.1
Published
Animated components built with Material-UI and Framer Motion
Readme
Animated MUI Components
Animated MUI Components is a library of animated components built with Material-UI and Framer Motion. This library provides a set of customizable animated components to enhance your React applications.
Installation
You can install the package via npm: bash npm install @your-scope/animated-mui-components
Usage
Here’s a simple example of how to use the AnimatedAccordion component:
javascript:animated-mui-components/Readme.md
import React, { useState } from 'react';
import { AnimatedAccordion } from '@your-scope/animated-mui-components';
const App = () => {
const [expanded, setExpanded] = useState(false);
return (
<AnimatedAccordion
expanded={expanded}
onChange={() => setExpanded(!expanded)}
summary="Click me to expand"
Available Components
AnimatedAccordionAnimatedAvatarAnimatedBadgeAnimatedButtonAnimatedCardAnimatedChartAnimatedChipAnimatedDrawerAnimatedFabAnimatedListAnimatedMenuAnimatedModalAnimatedPaginationAnimatedProgressAnimatedSkeletonAnimatedSliderAnimatedSpeedDialAnimatedStepperAnimatedSwitch
Documentation
For detailed documentation on each component, please refer to the documentation site.
License
This project is licensed under the MIT License.
