UNPKG

@npio/internals

Version:

A free visual website editor, powered with your own SolidJS components.

10 lines (7 loc) 173 B
import { RgbColor } from "../types"; export const rgbVal = function (color?: RgbColor) { if (!color) { return; } return `${color.r}, ${color.g}, ${color.b}`; };