File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ import { DEFAULT_FILL_NONE , DEFAULT_HEIGHT , DEFAULT_WIDTH } from '../../constants/constants' ;
2+ import { IconProps } from '../types' ;
3+
4+ const PeopleIcon = ( {
5+ width = DEFAULT_WIDTH ,
6+ height = DEFAULT_HEIGHT ,
7+ fill = DEFAULT_FILL_NONE ,
8+ ...props
9+ } : IconProps ) : JSX . Element => (
10+ < svg
11+ width = { width }
12+ height = { height }
13+ viewBox = "0 0 48 48"
14+ fill = { fill }
15+ xmlns = "http://www.w3.org/2000/svg"
16+ { ...props }
17+ >
18+ < path d = "M3 29.4c0-4.256 8.661-6.4 13-6.4s13 2.144 13 6.4V35H3zM23 14c0 3.867-3.133 7-7 7s-7-3.133-7-7 3.133-7 7-7 7 3.133 7 7m17 4c0 2.762-2.237 5-5 5s-5-2.238-5-5 2.237-5 5-5 5 2.238 5 5" />
19+ < path
20+ fill-rule = "evenodd"
21+ clip-rule = "evenodd"
22+ d = "M31 35v-5.6c0-1.364-.532-2.511-1.28-3.437C31.57 25.322 33.583 25 35 25c3.337 0 10 1.787 10 5.333V35z"
23+ />
24+ </ svg >
25+ ) ;
26+
27+ export default PeopleIcon ;
Original file line number Diff line number Diff line change 1+ export { default as PeopleIcon } from './PeopleIcon' ;
You can’t perform that action at this time.
0 commit comments