UNPKG

@equinor/eds-utils

Version:

Utility functions and hooks for the Equinor Design System

17 lines (15 loc) 243 B
const shorthand = token => { if (!token) { return undefined; } const { width = '', style = '', color = '' } = token; if (!width) { return null; } return `${width} ${style} ${color}`; }; export { shorthand };