UNPKG

infrastructure-components

Version:

Infrastructure-Components configure the infrastructure of your React-App as part of your React-Components.

14 lines (12 loc) 275 B
import { parseShadow } from './util' export default tokenStream => { const { offset, radius, color } = parseShadow(tokenStream) return { $merge: { shadowOffset: offset, shadowRadius: radius, shadowColor: color, shadowOpacity: 1, }, } }