UNPKG

rollpkg-example-package

Version:
19 lines (15 loc) 706 B
import * as React from 'react'; const randomNumber0to255 = () => Math.floor(256 * Math.random()); const randomRGBColorGenerator = () => { const red = randomNumber0to255(); const green = randomNumber0to255(); const blue = randomNumber0to255(); return [red, green, blue]; }; const ColorBlock = ({ width, height, rgbColor, }) => React.createElement("div", { style: { width, height, backgroundColor: `rgb(${rgbColor})` } }); // only add displayName in development to help with debugging if (process.env.NODE_ENV !== 'production') { ColorBlock.displayName = 'ColorBlock'; } export { ColorBlock, randomRGBColorGenerator }; //# sourceMappingURL=rollpkg-example-package.esm.js.map