html-squircle
Version:
Utilities for generating superellipse squircles in the form of SVG strings, to be used in clip-path and background inline styles.
25 lines • 453 B
JavaScript
/**
* Returns a new object with all Background options, filled by the input,
* ordered, and restricted only to Background options.
*/
export const fillOptions = ({
width = 0,
height = 0,
curveLength = 0,
roundness = 0,
stroke = "",
strokeWidth = 0,
background = "",
injectedDefs = "",
injectedBody = ""
}) => ({
width,
height,
curveLength,
roundness,
stroke,
strokeWidth,
background,
injectedDefs,
injectedBody
});