forked from crowetic/commerce
assets
components
config
docs
framework
lib
click-outside
hooks
colors.ts
defaults.ts
focus-trap.tsx
get-slug.ts
logger.ts
range-map.ts
search.tsx
to-pixels.ts
usage-warns.ts
pages
public
.editorconfig
.env.template
.gitignore
.prettierignore
README.md
codegen.json
global.d.ts
license.md
next-env.d.ts
next.config.js
package.json
postcss.config.js
tailwind.config.js
tsconfig.json
yarn.lock
14 lines
316 B
TypeScript
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
|