@base-ui-components/react
Version:
Base UI is a library of headless ('unstyled') React components and low-level hooks. You gain complete control over your app's CSS and accessibility features.
23 lines (22 loc) • 793 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.ToastArrowDataAttributes = void 0;
let ToastArrowDataAttributes = exports.ToastArrowDataAttributes = /*#__PURE__*/function (ToastArrowDataAttributes) {
/**
* Indicates which side the toast is positioned relative to the anchor.
* @type {'top' | 'bottom' | 'left' | 'right' | 'inline-end' | 'inline-start'}
*/
ToastArrowDataAttributes["side"] = "data-side";
/**
* Indicates how the toast is aligned relative to specified side.
* @type {'start' | 'center' | 'end'}
*/
ToastArrowDataAttributes["align"] = "data-align";
/**
* Present when the toast arrow is uncentered.
*/
ToastArrowDataAttributes["uncentered"] = "data-uncentered";
return ToastArrowDataAttributes;
}({});