Skip to content

Commit 5ea5a38

Browse files
Merge branch 'master' into feature/hidden-mediaquery-optimization
2 parents 630f5c2 + 1d760fe commit 5ea5a38

File tree

15 files changed

+191
-1
lines changed

15 files changed

+191
-1
lines changed
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
import { DEFAULT_FILL_NONE, DEFAULT_HEIGHT, DEFAULT_WIDTH } from '../../constants/constants';
2+
import { IconProps } from '../types';
3+
4+
export const BuildRoundedIcon = ({
5+
width = DEFAULT_WIDTH,
6+
height = DEFAULT_HEIGHT,
7+
fill = DEFAULT_FILL_NONE,
8+
...props
9+
}: IconProps): JSX.Element => {
10+
11+
return (
12+
<svg
13+
xmlns="http://www.w3.org/2000/svg"
14+
viewBox="0 0 24 24"
15+
width={width}
16+
height={height}
17+
data-testid="build-rounded-icon-svg"
18+
{...props}
19+
>
20+
<path d="m22.7 19-9.1-9.1c.9-2.3.4-5-1.5-6.9-2-2-5-2.4-7.4-1.3L9 6 6 9 1.6 4.7C.4 7.1.9 10.1 2.9 12.1c1.9 1.9 4.6 2.4 6.9 1.5l9.1 9.1c.4.4 1 .4 1.4 0l2.3-2.3c.5-.4.5-1.1.1-1.4z" fill={fill}/>
21+
</svg>
22+
);
23+
};
24+
25+
export default BuildRoundedIcon;

src/icons/BuildRounded/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export { default as BuildRoundedIcon } from './BuildRoundedIcon';
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
import { DEFAULT_HEIGHT, DEFAULT_WIDTH, DEFAULT_FILL_NONE } from '../../constants/constants';
2+
import { IconProps } from '../types';
3+
4+
export const DirectionsCarIcon = ({
5+
width = DEFAULT_WIDTH,
6+
height = DEFAULT_HEIGHT,
7+
fill = DEFAULT_FILL_NONE,
8+
...props
9+
}: IconProps): JSX.Element => {
10+
11+
return (
12+
<svg
13+
xmlns="http://www.w3.org/2000/svg"
14+
viewBox="0 0 24 24"
15+
width={width}
16+
height={height}
17+
data-testid="directions-car-icon-svg"
18+
{...props}
19+
>
20+
<path d="M18.92 6.01C18.72 5.42 18.16 5 17.5 5h-11c-.66 0-1.21.42-1.42 1.01L3 12v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h12v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-8l-2.08-5.99zM6.5 16c-.83 0-1.5-.67-1.5-1.5S5.67 13 6.5 13s1.5.67 1.5 1.5S7.33 16 6.5 16zm11 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5 11l1.5-4.5h11L19 11H5z" fill={fill} />
21+
</svg>
22+
);
23+
};
24+
25+
export default DirectionsCarIcon;

src/icons/DirectionsCar/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export { default as DirectionsCarIcon } from './DirectionsCarIcon';

src/icons/Explore/ExploreIcon.tsx

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
import { DEFAULT_HEIGHT, DEFAULT_WIDTH, DEFAULT_FILL_NONE } from '../../constants/constants';
2+
import { IconProps } from '../types';
3+
4+
export const ExploreIcon = ({
5+
width = DEFAULT_WIDTH,
6+
height = DEFAULT_HEIGHT,
7+
fill = DEFAULT_FILL_NONE,
8+
...props
9+
}: IconProps): JSX.Element => {
10+
11+
return (
12+
<svg
13+
xmlns="http://www.w3.org/2000/svg"
14+
viewBox="0 0 24 24"
15+
width={width}
16+
height={height}
17+
data-testid="explore-icon-svg"
18+
{...props}
19+
>
20+
<path d="M0 0h24v24H0z" fill="none" />
21+
<path d="M12 10.9c-.61 0-1.1.49-1.1 1.1s.49 1.1 1.1 1.1c.61 0 1.1-.49 1.1-1.1s-.49-1.1-1.1-1.1zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm2.19 12.19L6 18l3.81-8.19L18 6l-3.81 8.19z" fill={fill} />
22+
</svg>
23+
);
24+
};
25+
26+
export default ExploreIcon;

src/icons/Explore/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export {default as ExploreIcon } from './ExploreIcon';
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
import { DEFAULT_HEIGHT, DEFAULT_WIDTH, DEFAULT_FILL } from '../../constants/constants';
2+
import { IconProps } from '../types';
3+
4+
export const FileCopyIcon = ({
5+
width = DEFAULT_WIDTH,
6+
height = DEFAULT_HEIGHT,
7+
fill = DEFAULT_FILL,
8+
...props
9+
}: IconProps): JSX.Element => {
10+
11+
return (
12+
<svg
13+
xmlns="http://www.w3.org/2000/svg"
14+
viewBox="0 0 24 24"
15+
width={width}
16+
height={height}
17+
data-testid="file-copy-icon-svg"
18+
{...props}
19+
>
20+
<path d="M16 1H4c-1.1 0-2 .9-2 2v14h2V3h12V1zm-1 4l6 6v10c0 1.1-.9 2-2 2H7.99C6.89 23 6 22.1 6 21l.01-14c0-1.1.89-2 1.99-2h7zm-1 7h5.5L14 6.5V12z" fill={fill} />
21+
</svg>
22+
);
23+
};
24+
25+
export default FileCopyIcon;

src/icons/FileCopy/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export { default as FileCopyIcon } from './FileCopyIcon';

src/icons/ListAlt/ListAltIcon.tsx

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
import { DEFAULT_HEIGHT, DEFAULT_WIDTH, DEFAULT_FILL } from '../../constants/constants';
2+
import { IconProps } from '../types';
3+
4+
export const ListAltIcon = ({
5+
width = DEFAULT_WIDTH,
6+
height = DEFAULT_HEIGHT,
7+
fill = DEFAULT_FILL,
8+
...props
9+
}: IconProps): JSX.Element => {
10+
11+
return (
12+
<svg
13+
xmlns="http://www.w3.org/2000/svg"
14+
viewBox="0 0 24 24"
15+
width={width}
16+
height={height}
17+
data-testid="list-alt-icon-svg"
18+
{...props}
19+
>
20+
<path d="M19 5v14H5V5h14m1.1-2H3.9c-.5 0-.9.4-.9.9v16.2c0 .4.4.9.9.9h16.2c.4 0 .9-.5.9-.9V3.9c0-.5-.5-.9-.9-.9zM11 7h6v2h-6V7zm0 4h6v2h-6v-2zm0 4h6v2h-6zM7 7h2v2H7zm0 4h2v2H7zm0 4h2v2H7z" fill={fill} />
21+
</svg>
22+
);
23+
};
24+
25+
export default ListAltIcon;

src/icons/ListAlt/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export {default as ListAltIcon} from './ListAltIcon';

0 commit comments

Comments
 (0)