commerce/site/lib/to-pixels.ts
2022-01-07 11:48:45 -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