Skip to content

Commit

Permalink
fix(modal): allow disabling blur
Browse files Browse the repository at this point in the history
  • Loading branch information
abelflopes committed Nov 22, 2024
1 parent 633e56c commit 7debae9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/components/modal/src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import { ModalFooter } from "./ModalFooter";
* Extends React.HTMLAttributes<HTMLDivElement> to inherit HTMLDivElement attributes.
*/

interface ModalProps extends Omit<OverlayProps, "blur" | "skin"> {
interface ModalProps extends Omit<OverlayProps, "skin"> {
/** Modal width */
size?: "s" | "m" | "l" | "xl" | "full";
/** Dismiss Callback, also determines if the modal can be dismissed by clicking outside or close button */
Expand Down

0 comments on commit 7debae9

Please sign in to comment.