Skip to content

Commit 1a1a17c

Browse files
feat!: drop unused property
1 parent 664e416 commit 1a1a17c

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/components/canvas/Alert/Alert.tsx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import React from 'react';
1+
import { ReactNode } from 'react';
22

33
import styles from './Alert.module.scss';
44

@@ -8,8 +8,7 @@ export default function Alert({
88
children,
99
onClose,
1010
}: {
11-
readonly skin?: string;
12-
readonly children?: React.ReactNode;
11+
readonly children?: ReactNode;
1312
readonly onClose?: () => void;
1413
}) {
1514
return (

0 commit comments

Comments
 (0)