forked from patternfly/patternfly-react
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIconBasic.tsx
More file actions
23 lines (22 loc) · 816 Bytes
/
IconBasic.tsx
File metadata and controls
23 lines (22 loc) · 816 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import { Fragment } from 'react';
import { Icon } from '@patternfly/react-core';
import LongArrowAltDownIcon from '@patternfly/react-icons/dist/esm/icons/long-arrow-alt-down-icon';
import RhMicronsCaretRightIcon from '@patternfly/react-icons/dist/esm/icons/rh-microns-caret-right-icon';
import RhMicronsCaretDownIcon from '@patternfly/react-icons/dist/esm/icons/rh-microns-caret-down-icon';
import RhUiSettingsFillIcon from '@patternfly/react-icons/dist/esm/icons/rh-ui-settings-fill-icon';
export const IconBasic: React.FunctionComponent = () => (
<Fragment>
<Icon>
<LongArrowAltDownIcon />
</Icon>{' '}
<Icon>
<RhMicronsCaretRightIcon />
</Icon>{' '}
<Icon>
<RhMicronsCaretDownIcon />
</Icon>{' '}
<Icon>
<RhUiSettingsFillIcon />
</Icon>
</Fragment>
);