UNPKG

@hackplan/polaris

Version:

Shopify’s product component library

6 lines (5 loc) 247 B
import { pluckDeep } from './pluckDeep'; export function getWidth(value = {}, defaultWidth = 0, key = 'width') { const width = typeof value === 'number' ? value : pluckDeep(value, key); return width ? `${width}px` : `${defaultWidth}px`; }