We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d883620 commit eab5147Copy full SHA for eab5147
src/alert/Alert.tsx
@@ -53,6 +53,7 @@ export const Alert = ({
53
onDismissClick,
54
banner = false,
55
extra,
56
+ ...otherProps
57
}: AlertProps) => {
58
let variantStyle = useSeverityStyle(variant);
59
@@ -61,6 +62,7 @@ export const Alert = ({
61
62
}
63
return (
64
<div
65
+ {...otherProps}
66
css={css`
67
padding: ${theme.spacing.margin8}px ${theme.spacing.margin16}px;
68
border-radius: 4px;
0 commit comments