import { FigmaSquircleParams } from 'figma-squircle'; /** * Parameters for generating a squircle path. * * This type mirrors `FigmaSquircleParams` but makes the `cornerSmoothing` * property optional so that a default value can be applied automatically. */ export type SquircleParams = Omit & { /** Degree of smoothing for the corners (0 = sharp, 1 = fully rounded). */ cornerSmoothing?: number; };