UNPKG

@shopify/polaris

Version:

Shopify’s admin product component library

11 lines (7 loc) 295 B
'use strict'; var pluckDeep = require('./pluck-deep.js'); function getWidth(value = {}, defaultWidth = 0, key = 'width') { const width = typeof value === 'number' ? value : pluckDeep.pluckDeep(value, key); return width ? `${width}px` : `${defaultWidth}px`; } exports.getWidth = getWidth;