UNPKG

vira

Version:

A simple and highly versatile design system using element-vir.

13 lines (12 loc) 264 B
/** * Wraps an existing icon with explicit dimensions and outputs another icon that can be used * anywhere the original icon can be used. * * @category Icon */ export function createSizedIcon(icon, size) { return { ...icon, size, }; }