A continuation for #372 (comment)
Figma:
- create a 47x47px frame
- add a 29x29px rectangle at x=y=9
- set the corner radii to 6px
- set the fill to white and the opacity to 0.001% (it should become 0% when confirmed).

6. export the frame
Pixie:
proc drawShadow() =
let image = newImage(47, 47)
let r = 6f32
let path = newPath()
path.roundedRect(rect(9, 9, 29, 29), r, r, r, r)
image.fillPath(path, "white")
image.shadow(
offset = vec2(0, 0),
spread = -2,
blur = 0,
color = color(0, 0, 0, 0.4)
).writeFile("shadow_pixie_negative_spread_no_blur.png")
Figma:

- 25x25px rect
- corner radius is 4px (6 - 2):
Pixie:

- 25x25px rect
- corner radius is 6px (unchanged):
A continuation for #372 (comment)
Figma:
6. export the frame
Pixie:
Figma:

Pixie:
