Skip to content

Commit 3d3dcd7

Browse files
author
Victor George
committed
New icon organization
1 parent 3464ce0 commit 3d3dcd7

File tree

8 files changed

+40
-0
lines changed

8 files changed

+40
-0
lines changed
File renamed without changes.
File renamed without changes.
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
import React from 'react'
2+
3+
const tcCarretDown = ({ width, height, fill }) => {
4+
const f = (fill || '#62AADC')
5+
const h = (height || '6')
6+
const w = (width || '10')
7+
return (
8+
<svg xmlns="http://www.w3.org/2000/svg" height={ h } width={ w } viewBox={ 0 0 { h } { w } } aria-labelledby="title">
9+
<title>tc-carret-down</title>
10+
<path fill={ f } fill-rule="evenodd" d="M162.4782 192.1933c.3036.271.7623.271 1.066 0l4.478-4L166.9566 187l-3.9404 3.5284-3.95-3.5284-1.066 1.1933 4.4782 4z"/>
11+
</svg>
12+
)
13+
}
14+
15+
export default tcCarretDown
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
import React from 'react'
2+
3+
// Carret Up Icon
4+
const tcCarretUp = (props) => {
5+
const fill = props.fill || '#62AADC'
6+
const height = props.height || '6'
7+
const width = props.width || '10'
8+
9+
return (
10+
<svg xmlns="http://www.w3.org/2000/svg" height={height} width={width} viewBox={ 0 0 height width} aria-labelledby="title">
11+
<title id="title">tc-carret-up</title>
12+
<path fill={fill} fill-rule="evenodd" d="M139.4782 187.2034c.3036-.2712.7623-.2712 1.066 0l4.478 4-1.0657 1.1932-3.9404-3.5284-3.95 3.5284-1.066-1.1932 4.4782-4z"/>
13+
</svg>
14+
)
15+
}
16+
17+
tcCarretUp.propTypes = {
18+
fill: React.PropTypes.string,
19+
stroke: React.PropTypes.string,
20+
height: React.PropTypes.number,
21+
width: React.PropTypes.number
22+
}
23+
24+
25+
export default tcCarretUp

0 commit comments

Comments
 (0)