astro-ghostcms/.pnpm-store/v3/files/30/0cf721a361f8ff75c952c95abf4...

11 lines
236 B
Plaintext

import { parseShadow } from './util'
export default tokenStream => {
const { offset, radius, color } = parseShadow(tokenStream)
return {
textShadowOffset: offset,
textShadowRadius: radius,
textShadowColor: color,
}
}