Skip to content

Commit 7c91805

Browse files
committed
export zoom icon
1 parent 8cf4274 commit 7c91805

1 file changed

Lines changed: 30 additions & 0 deletions

File tree

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
// SPDX-License-Identifier: MIT
2+
// Copyright contributors to the kepler.gl project
3+
4+
import React, {Component} from 'react';
5+
import Base, {BaseProps} from './base';
6+
7+
export default class ZoomOut extends Component<Partial<BaseProps>> {
8+
static defaultProps = {
9+
height: '16px',
10+
viewBox: '0 0 16 16',
11+
predefinedClassName: 'data-ex-icons-zoom-out'
12+
};
13+
14+
render() {
15+
return (
16+
<Base {...this.props}>
17+
<path
18+
fillRule="evenodd"
19+
clipRule="evenodd"
20+
d="M3.84995 6.54449C3.49097 6.54449 3.19995 6.83551 3.19995 7.19449C3.19995 7.55348 3.49097 7.84449 3.84995 7.84449H10.55C10.9089 7.84449 11.2 7.55348 11.2 7.19449C11.2 6.83551 10.9089 6.54449 10.55 6.54449H3.84995Z"
21+
/>
22+
<path
23+
fillRule="evenodd"
24+
clipRule="evenodd"
25+
d="M12.1 7.2C12.1 9.90619 9.90619 12.1 7.2 12.1C4.4938 12.1 2.3 9.90619 2.3 7.2C2.3 4.4938 4.4938 2.3 7.2 2.3C9.90619 2.3 12.1 4.4938 12.1 7.2ZM11.0938 12.0251C10.0295 12.885 8.67487 13.4 7.2 13.4C3.77583 13.4 1 10.6242 1 7.2C1 3.77583 3.77583 1 7.2 1C10.6242 1 13.4 3.77583 13.4 7.2C13.4 8.68104 12.8807 10.0408 12.0143 11.1071L14.7721 13.8649C15.0259 14.1187 15.0259 14.5303 14.7721 14.7841C14.5182 15.038 14.1067 15.038 13.8528 14.7841L11.0938 12.0251Z"
26+
/>
27+
</Base>
28+
);
29+
}
30+
}

0 commit comments

Comments
 (0)