1
0
Fork 0
freesewing/sites/shared/components/text-on-bg.mjs

11 lines
237 B
JavaScript
Raw Normal View History

2023-08-23 17:41:34 +02:00
export const TextOnBg = ({ txt }) => (
<span
style={{
textShadow:
'1px 1px 1px hsl(var(--b1)), -1px -1px 1px hsl(var(--b1)), -1px 1px 1px hsl(var(--b1)), 1px -1px 1px hsl(var(--b1))',
}}
>
{txt}
</span>
)