Skip to content

Commit f8411f3

Browse files
author
Vic G
authored
Merge pull request #89 from appirio-tech/icons-vic
Icons vic
2 parents 92407d5 + 8249dfa commit f8411f3

File tree

85 files changed

+1643
-213
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

85 files changed

+1643
-213
lines changed

components/Carousel/Carousel.jsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import classNames from 'classnames'
44
import React, { Component } from 'react'
55
import ReactDOM from 'react-dom'
66

7-
import LeftArrowIcon from '../Icons/LeftArrowIcon'
8-
import RightArrowIcon from '../Icons/RightArrowIcon'
7+
import IconArrowMinimalLeft from '../Icons/IconArrowMinimalLeft'
8+
import IconArrowMinimalRight from '../Icons/IconArrowMinimalRight'
99

1010
export default class Carousel extends Component {
1111
componentWillMount() {
@@ -107,13 +107,13 @@ export default class Carousel extends Component {
107107
return (
108108
<div className="Carousel">
109109
<div className="page-down" onClick={this.handlePageDown}>
110-
<LeftArrowIcon fill="#FFFFFF" />
110+
<IconArrowMinimalLeft fill="#FFFFFF" />
111111
</div>
112112
<div className="visible-area">
113113
{ this.props.children.map(carouselItem) }
114114
</div>
115115
<div className="page-up" onClick={this.handlePageUp}>
116-
<RightArrowIcon fill="#FFFFFF" />
116+
<IconArrowMinimalRight fill="#FFFFFF" />
117117
</div>
118118
</div>
119119
)

components/Icons/FacebookIcon.jsx

Lines changed: 0 additions & 25 deletions
This file was deleted.

components/Icons/GPlusIcon.jsx

Lines changed: 0 additions & 25 deletions
This file was deleted.

components/Icons/HamburgerIcon.jsx

Lines changed: 0 additions & 23 deletions
This file was deleted.
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
import React from 'react'
2+
3+
const IconArrowLogOut = (props) => {
4+
const fill = props.fill || '#62AADC'
5+
const height = props.height || '16'
6+
const width = props.width || '16'
7+
8+
return (
9+
<svg xmlns="http://www.w3.org/2000/svg" height={height} width={width} viewBox="0 0 16 16" aria-labelledby="title">
10+
<title id="title">IconArrowLogOut</title>
11+
<path fill={fill} d="M3.409 2H8v2h2V1a1 1 0 0 0-1-1H1a1 1 0 0 0-1 1v9c0 .266.105.52.293.707l5 5A1 1 0 0 0 7 15V6.016a.998.998 0 0 0-.292-.706L3.409 2zM5 12.586l-3-3V3.42l3 3.009v6.157z"/>
12+
<path fill={fill} d="M12 3.586L10.586 5l2 2H8v2h4.586l-2 2L12 12.414l3.707-3.707a.999.999 0 0 0 0-1.414L12 3.586z"/>
13+
</svg>
14+
)
15+
}
16+
17+
IconArrowLogOut.propTypes = {
18+
fill : React.PropTypes.string,
19+
stroke : React.PropTypes.string,
20+
height : React.PropTypes.number,
21+
width : React.PropTypes.number
22+
}
23+
24+
export default IconArrowLogOut
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
import React from 'react'
2+
3+
const IconArrowMinimalDown = (props) => {
4+
const fill = props.fill || '#62AADC'
5+
const height = props.height || '16'
6+
const width = props.width || '16'
7+
8+
return (
9+
<svg xmlns="http://www.w3.org/2000/svg" height={height} width={width} viewBox="0 0 16 16" aria-labelledby="title">
10+
<title id="title">IconArrowMinimalDown</title>
11+
<path fill={fill} d="M15.707 4.854l-1.414-1.415L8 9.732 1.707 3.439.293 4.854 8 12.561z"/>
12+
</svg>
13+
)
14+
}
15+
16+
IconArrowMinimalDown.propTypes = {
17+
fill : React.PropTypes.string,
18+
stroke : React.PropTypes.string,
19+
height : React.PropTypes.number,
20+
width : React.PropTypes.number
21+
}
22+
23+
export default IconArrowMinimalDown
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
import React from 'react'
2+
3+
const IconArrowMinimalLeft = (props) => {
4+
const fill = props.fill || '#62AADC'
5+
const height = props.height || '16'
6+
const width = props.width || '16'
7+
8+
return (
9+
<svg xmlns="http://www.w3.org/2000/svg" height={height} width={width} viewBox="0 0 16 16" aria-labelledby="title">
10+
<title id="title">IconArrowMinimalLeft</title>
11+
<path fill={fill} d="M11.146.293L3.439 8l7.707 7.707 1.415-1.414L6.268 8l6.293-6.293z"/>
12+
</svg>
13+
)
14+
}
15+
16+
IconArrowMinimalLeft.propTypes = {
17+
fill : React.PropTypes.string,
18+
stroke : React.PropTypes.string,
19+
height : React.PropTypes.number,
20+
width : React.PropTypes.number
21+
}
22+
23+
export default IconArrowMinimalLeft
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
import React from 'react'
2+
3+
const IconArrowMinimalRight = (props) => {
4+
const fill = props.fill || '#62AADC'
5+
const height = props.height || '16'
6+
const width = props.width || '16'
7+
8+
return (
9+
<svg xmlns="http://www.w3.org/2000/svg" height={height} width={width} viewBox="0 0 16 16" aria-labelledby="title">
10+
<title id="title">IconArrowMinimalRight</title>
11+
<path fill={fill} d="M4.854 15.707L12.561 8 4.854.293 3.439 1.707 9.732 8l-6.293 6.293z"/>
12+
</svg>
13+
)
14+
}
15+
16+
IconArrowMinimalRight.propTypes = {
17+
fill : React.PropTypes.string,
18+
stroke : React.PropTypes.string,
19+
height : React.PropTypes.number,
20+
width : React.PropTypes.number
21+
}
22+
23+
export default IconArrowMinimalRight
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
import React from 'react'
2+
3+
const IconArrowMinimalUp = (props) => {
4+
const fill = props.fill || '#62AADC'
5+
const height = props.height || '16'
6+
const width = props.width || '16'
7+
8+
return (
9+
<svg xmlns="http://www.w3.org/2000/svg" height={height} width={width} viewBox="0 0 16 16" aria-labelledby="title">
10+
<title id="title">IconArrowMinimalUp</title><path fill={fill} d="M8 3.439L.293 11.146l1.414 1.415L8 6.268l6.293 6.293 1.414-1.415z"/></svg>
11+
)
12+
}
13+
14+
IconArrowMinimalUp.propTypes = {
15+
fill : React.PropTypes.string,
16+
stroke : React.PropTypes.string,
17+
height : React.PropTypes.number,
18+
width : React.PropTypes.number
19+
}
20+
21+
export default IconArrowMinimalUp
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
import React from 'react'
2+
3+
const IconArrowPriorityHigh = (props) => {
4+
const fill = props.fill || '#62AADC'
5+
const height = props.height || '16'
6+
const width = props.width || '16'
7+
8+
return (
9+
<svg xmlns="http://www.w3.org/2000/svg" height={height} width={width} viewBox="0 0 16 16" aria-labelledby="title">
10+
<title id="title">IconArrowPriorityHigh</title>
11+
<path fill={fill} d="M11 12h5v2h-5zM11 8h5v2h-5zM11 4h5v2h-5zM5 14h4v-2H5c-1.654 0-3-1.346-3-3s1.346-3 3-3v3l4-4-4-4v3C2.243 4 0 6.243 0 9s2.243 5 5 5z"/>
12+
</svg>
13+
)
14+
}
15+
16+
IconArrowPriorityHigh.propTypes = {
17+
fill : React.PropTypes.string,
18+
height : React.PropTypes.number,
19+
width : React.PropTypes.number
20+
}
21+
22+
export default IconArrowPriorityHigh

0 commit comments

Comments
 (0)