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 c606a01 commit 77d671aCopy full SHA for 77d671a
package.json
@@ -1,5 +1,5 @@
1
{
2
- "version": "0.3.0",
+ "version": "0.3.1",
3
"license": "MIT",
4
"main": "dist/index.js",
5
"typings": "dist/index.d.ts",
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