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

11 lines
236 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
import { parseShadow } from './util'
export default tokenStream => {
const { offset, radius, color } = parseShadow(tokenStream)
return {
textShadowOffset: offset,
textShadowRadius: radius,
textShadowColor: color,
}
}