UNPKG

payments-icons-library

Version:

Payments Icons Library can help you fetch icons for most of the payment methods in different sizes and format.Icons can be fetched individually or in bulk format by entering the names or ifsc code.

9 lines 202 B
export function getImageSize(size) { let imageSize; if (["sm", "md", "lg", "svg"].includes(size)) { imageSize = size; } else { imageSize = "sm"; } return imageSize; }