+ This content is hidden and ellipsed
+ This content is hidden and ellipsed
+
+``` ### Grid Integration
The `area` prop supports CSS Grid integration:
diff --git a/static/app/components/core/layout/container.tsx b/static/app/components/core/layout/container.tsx
index b9a454996eab18..b6a1196915b728 100644
--- a/static/app/components/core/layout/container.tsx
+++ b/static/app/components/core/layout/container.tsx
@@ -22,6 +22,13 @@ import {
/* eslint-disable typescript-sort-keys/interface */
interface ContainerLayoutProps {
+ /**
+ * When true, overflow is set to hidden, text-overflow is set to ellipsis, and white-space is set to nowrap.
+ * Individual properties can be overridden by setting the corresponding property (e.g. overflow, text-overflow, white-space).
+ * @default undefined
+ */
+ ellipsis?: Responsive