Repository URL to install this package:
|
Version:
4.0.29 ▾
|
import React from 'react'
import { fromPropsToIdentifier } from 'atoms/Icons/deps'
import { DefaultProps } from '../../typings'
import Vector from '../../../Vector/index'
interface Props extends DefaultProps {}
const wording = {
title: 'Skava New Logo',
description:
'Skava, a wholy owned Infosys subsidiary. A logo with letters matching the name, with emphasis given to the letter K.',
}
class SkavaNewLogoIcon extends React.PureComponent<Props> {
static defaultProps = {
width: '141',
height: '41',
}
render() {
const identifier = fromPropsToIdentifier(this.props)
return (
<Vector {...this.props} {...wording} namespace={identifier}>
<g fill="#000" fill-rule="evenodd">
<path d="M103.013 6.594L96.105 25.84 89.197 6.594H78.312l13.293 33.003h8.817l13.293-33.003zM117.157 6.594l-13.948 33.003h10.293l2-5.107h12.259l1.99 5.107h10.476L126.4 6.875l-.122-.28h-9.12zm4.492 12.2l3.039 7.806h-6.094l3.055-7.806zM67.178 26.598l3.063-7.803 3.039 7.803h-6.102zm7.693-20.005h-9.12L55.94 29.8l-5.986-8.695 12.76-14.507H51.01l-10.553 12.44L40.272.444H30.52l.122 25.691c-1.537-4.552-6.749-6.363-12.315-7.59-4.669-1.07-5.417-1.682-5.405-2.818.01-.97 1.09-1.565 2.821-1.565h.09c3.345.037 6.124.902 8.752 2.713l.36.25 5.27-6.982-.37-.293c-3.515-2.77-7.607-3.982-13.684-4.05-.083 0-.164-.003-.247-.003-7.915 0-13.258 4.256-13.33 10.734-.075 7.15 6.068 9.162 12.915 10.743 4.466 1.041 5.275 1.721 5.265 2.77-.005.518-.257.911-.763 1.202-.586.338-1.442.528-2.63.494-4.886-.054-8.546-1.083-11.18-3.148l-.338-.264L0 34.897l.364.318c3.598 3.163 9.177 4.805 16.583 4.886.096.003.193.003.291.003 4.016 0 7.42-.951 9.859-2.76 1.784-1.325 2.984-3.075 3.573-5.165l.037 7.409h9.751v-8.419l2.716-3.021 7.844 11.44h11.061l2-5.097h12.276l1.987 5.104h10.48L74.99 6.876l-.12-.283zM132.755 6.893c1.527 0 2.684 1.205 2.684 2.701s-1.164 2.719-2.702 2.719c-1.53 0-2.684-1.205-2.684-2.701s1.162-2.719 2.702-2.719m-.018 5.718a3.019 3.019 0 0 0 3.02-3.017 2.993 2.993 0 0 0-3.002-3.001 3.017 3.017 0 0 0-3.017 3.019c0 1.645 1.313 2.999 3 2.999" />
<path d="M132.13 8.48h.781c.389 0 .624.174.624.5 0 .307-.235.498-.624.498h-.782v-.997zm0 1.521h.657l.765 1.088h.714l-.849-1.186c.433-.127.731-.442.731-.958 0-.63-.481-1.004-1.212-1.004h-1.403v3.148h.596v-1.088z" />
</g>
</Vector>
)
}
}
export { SkavaNewLogoIcon }
export default SkavaNewLogoIcon