Skip to content

Commit

Permalink
Change dialogCss type to any since there is no StyleFunction av…
Browse files Browse the repository at this point in the history
…ailable in `styled-components` in branch/v16
  • Loading branch information
gzdunek committed Dec 3, 2024
1 parent b5450be commit ed5cebd
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
*/

import { ReactNode } from 'react';
import { StyleFunction } from 'styled-components';

import Dialog from 'design/Dialog';

Expand All @@ -35,7 +34,7 @@ export function DialogConfirmation(props: {
event: KeyboardEvent | React.MouseEvent,
reason: 'escapeKeyDown' | 'backdropClick'
) => void;
dialogCss?: StyleFunction<any>;
dialogCss?: any;
}) {
return (
<Dialog
Expand Down

0 comments on commit ed5cebd

Please sign in to comment.