1
0
mirror of https://github.com/vercel/commerce.git synced 2025-05-16 14:36:59 +00:00
commerce/lib/to-pixels.ts
2020-10-15 11:10:07 -03:00

14 lines
316 B
TypeScript

// Convert numbers or strings to pixel value
// Helpful for styled-jsx when using a prop
// height: ${toPixels(height)}; (supports height={20} and height="20px")
const toPixels = (value: string | number) => {
if (typeof value === 'number') {
return `${value}px`
}
return value
}
export default toPixels