Sha256: 07ecf8415eefef0249dbb0661f278ad5222dff312813ee22155923ad62457af9
Contents?: true
Size: 230 Bytes
Versions: 478
Compression:
Stored size: 230 Bytes
Contents
// Logic for handling icons related props to allow for string OR array of strings export const displayIcon = (icon: string | string[]) => { if (typeof icon === "string") { return [icon, icon] } return icon }
Version data entries
478 entries across 478 versions & 1 rubygems