commerce/site/lib/to-pixels.ts
Matthew Mulford 470c40fd53 shopify
2022-10-08 14:37:47 -05: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