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) · 721 Bytes
/
IconBasic.tsx
File metadata and controls
23 lines (22 loc) · 721 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 React from 'react';
import { Icon } from '@patternfly/react-core';
import LongArrowAltDownIcon from '@patternfly/react-icons/dist/esm/icons/long-arrow-alt-down-icon';
import AngleRightIcon from '@patternfly/react-icons/dist/esm/icons/angle-right-icon';
import AngleDownIcon from '@patternfly/react-icons/dist/esm/icons/angle-down-icon';
import CogIcon from '@patternfly/react-icons/dist/esm/icons/cog-icon';
export const IconBasic: React.FunctionComponent = () => (
<React.Fragment>
<Icon>
<LongArrowAltDownIcon />
</Icon>{' '}
<Icon>
<AngleRightIcon />
</Icon>{' '}
<Icon>
<AngleDownIcon />
</Icon>{' '}
<Icon>
<CogIcon />
</Icon>
</React.Fragment>
);