export enum Alignment { /** * Aligns content to the top-left corner of the container */ TopLeft = 'topLeft', /** * Centers content horizontally at the top of the container */ TopCenter = 'topCenter', /** * Aligns content to the top-right corner of the container */ TopRight = 'topRight', /** * Centers content vertically on the left side of the container */ CenterLeft = 'centerLeft', /** * Centers content both horizontally and vertically in the container */ Center = 'center', /** * Centers content vertically on the right side of the container */ CenterRight = 'centerRight', /** * Aligns content to the bottom-left corner of the container */ BottomLeft = 'bottomLeft', /** * Centers content horizontally at the bottom of the container */ BottomCenter = 'bottomCenter', /** * Aligns content to the bottom-right corner of the container */ BottomRight = 'bottomRight', }