File tree 2 files changed +8
-2
lines changed
packages/orbit-components/src/Dialog
2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -126,7 +126,13 @@ const Dialog = ({
126
126
{ illustration && < div className = "mb-400 lm:text-start text-center" > { illustration } </ div > }
127
127
< div className = "mb-400 gap-200 lm:text-start lm:[&>.orbit-text]:text-start flex flex-col text-center [&>.orbit-text]:text-center" >
128
128
{ title && (
129
- < Heading type = "title3" align = "center" largeMobile = { { align : "start" } } as = { titleAs } >
129
+ < Heading
130
+ type = "title3"
131
+ align = "center"
132
+ largeMobile = { { align : "start" } }
133
+ role = { undefined }
134
+ as = { titleAs }
135
+ >
130
136
{ title }
131
137
</ Heading >
132
138
) }
Original file line number Diff line number Diff line change 4
4
import type * as React from "react" ;
5
5
6
6
import type * as Common from "../common/types" ;
7
- import type { HeadingProps } from "../Heading/types" ;
7
+ import type { Props as HeadingProps } from "../Heading/types" ;
8
8
9
9
export interface Props extends Common . Globals {
10
10
readonly title : React . ReactNode ;
You can’t perform that action at this time.
0 commit comments