Skip to content

Commit 6279f69

Browse files
authored
fix: Modal close button size (#420)
1 parent 9f63f85 commit 6279f69

5 files changed

+2
-5
lines changed
Loading
Loading
Loading
Loading
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
11
import React from 'react';
22

3-
import { Button } from '../Button';
4-
import { Icon } from '../Icon';
3+
import { ActionButton } from '../Button';
54

65
export const ModalClose = (props) => (
7-
<Button small ghost flexShrink={0} {...props}>
8-
<Icon name='cross' size='x24' />
9-
</Button>
6+
<ActionButton small ghost flexShrink={0} {...props} icon='cross' />
107
);

0 commit comments

Comments
 (0)