Skip to content
#

emotion

Here are 1,102 public repositories matching this topic...

theme-ui
hasparus
hasparus commented Apr 7, 2022

We're currently causing peerDependency warnings in Yarn 2.
Whenever we depend on something, this dependencies peerDependencies must be listed either in our peerDependencies or in our dependencies.

Discussed in system-ui/theme-ui#2196

Originally posted by jw-miaem April 7, 2022
Reason I ask (before raisin

bug good first issue
astgermain
astgermain commented Dec 16, 2020

Animations can easily be reversed for cleanup using state to set the value of a reverse prop and is already implemented but it is not stated in documentation even though it works.

Example:

const [shown, setShown] = useState(false)
const yeetMenu = () => {
    setShown(!shown)
}
<Slide
      duration={500}
      triggerOnce={true}
      direction="right"
      reverse={shown}
good first issue

Improve this page

Add a description, image, and links to the emotion topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the emotion topic, visit your repo's landing page and select "manage topics."

Learn more