@isotope/prototope
Version:
Isotope-based JavaScript library for speedy UI prototyping
19 lines (14 loc) • 368 B
text/typescript
import { Util } from "../../declarations";
import { createUtil } from "../util";
type Opacity = 0 | 25 | 50 | 75 | 100;
/**
* Prototope opacity util.
*
* @param value - Config value.
* @returns - Prototope util.
*/
const opacity = (value: Opacity): Util => {
const divider = 100;
return createUtil({ opacity: `${value / divider}` });
};
export { opacity };