@lobehub/ui
Version:
Lobe UI is an open-source UI component library for building AIGC web apps
18 lines (16 loc) • 437 B
text/typescript
import { CSSProperties } from "react";
//#region src/utils/smoothCorners.d.ts
/**
* Predefined smooth corners masks for common corner values
*/
declare const SMOOTH_CORNER_MASKS: {
readonly circle: string;
readonly ios: string;
readonly sharp: string;
readonly smooth: string;
readonly square: string;
readonly squircle: string;
};
//#endregion
export { SMOOTH_CORNER_MASKS };
//# sourceMappingURL=smoothCorners.d.mts.map