Utility for filtering Styled System props with Emotion's shouldForwardProp option
npm i @styled-system/should-forward-prop
import styled from '@emotion/styled'
import {
space,
color,
fontSize
} from 'styled-system'
import shouldForwardProp from '@styled-system/should-forward-prop'
const Box = styled('div', { shouldForwardProp })(
space,
color,
fontSize
)
MIT License