@aurigma/design-atoms-interfaces
Version:
11 lines (10 loc) • 394 B
TypeScript
import { IRectangleItemData } from "./IRectangleItemData";
/**
* A structure defining the common parameters of text elements and images.
*/
export interface IContentItemData extends IRectangleItemData {
/** The mask opacity of an item. The default value is `0.45`. */
maskOpacity?: number;
/** The fill color. The default value is `"rgba(0, 0, 0, 0)"`. */
fillColor?: string;
}