We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b1502ac commit 4330158Copy full SHA for 4330158
src/components/_page-warnings/page-warning/PageWarning.tsx
@@ -12,10 +12,10 @@ type Props = {
12
13
export const PageWarning = ({ whiteBg, size = 'small', children }: Props) => {
14
return (
15
- <div className={classNames(style.container, whiteBg && style.whiteBg)}>
+ <section className={classNames(style.container, whiteBg && style.whiteBg)}>
16
<AlertBox variant={'warning'} size={size} className={style.warning}>
17
{children}
18
</AlertBox>
19
- </div>
+ </section>
20
);
21
};
0 commit comments