UNPKG

@shopify/polaris

Version:

Shopify’s admin product component library

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