Repository URL to install this package:
|
Version:
0.14.1 ▾
|
ui-component-library
/
src
/
components
/
atoms
/
Icons
/
RefreshIcon
/
SingleRefreshIcon
/
SingleRefreshIcon.tsx
|
|---|
import React from 'react'
import { DefaultProps } from 'icons/typings'
import Vector from 'atoms/Vector'
// extending interface from Label component
interface Props extends DefaultProps { }
const wording = {
description: 'Single curved clockwise arrow forming a circle',
title: 'Refresh Icon',
vectorClassName: 'refresh',
}
class SingleRefreshIcon extends React.PureComponent<Props> {
static defaultProps = {
width: '117px',
height: '101px',
viewBox: '0 0 117 101',
}
render() {
return (
<Vector {...this.props} {...wording}>
<g>
<path
d="M66.569,101A50.167,50.167,0,0,1,34.882,89.776l5.04-6.308A42.428,42.428,0,1,0,24.258,48.48H40.427L20.214,72.694,0,48.48H16.189A50.427,50.427,0,1,1,66.569,101Z"
/>
</g>
</Vector>
)
}
}
export { SingleRefreshIcon }
export default SingleRefreshIcon