Repository URL to install this package:
Version:
0.14.1 ▾
|
ui-component-library
/
src
/
components
/
atoms
/
Icons
/
ArrowIcon
/
SolidArrowIcon
/
SolidArrowIcon.tsx
|
---|
import React from 'react'
import { DefaultProps } from 'icons/typings'
import Vector from 'atoms/Vector'
const wording = {
description: 'A filled arrow',
title: 'Solid Arrow Icon',
}
class SolidArrowIcon extends React.PureComponent<DefaultProps> {
static defaultProps = {
width: '14px',
height: '6px',
viewBox: '0 0 14 6',
fill: '#000000',
}
render() {
return (
<Vector {...this.props} {...wording}>
<path d={'M7 6L0 0h14z'} fillRule={'evenodd'} />
</Vector>
)
}
}
export { SolidArrowIcon }
export default SolidArrowIcon