@isotope/prototope
Version:
Isotope-based JavaScript library for speedy UI prototyping
12 lines • 302 B
JavaScript
import { createUtil } from "../util";
/**
* Prototope flex-shrink util.
*
* @param shrink - Flex shrink value.
* @returns - Prototope util.
*/
const flexShrink = (shrink = 0) => {
return createUtil({ flexShrink: `${shrink}` });
};
export { flexShrink };
//# sourceMappingURL=flex-shrink.js.map