Repository URL to install this package:
Version:
0.14.1 ▾
|
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: 'Dashboard, seperate layout structuring',
title: 'Dashboard Icon',
vectorClassName: 'dashboardicon',
}
class Dashboard extends React.PureComponent<Props> {
static defaultProps = {
width: '100px',
height: '98px',
viewBox: '0 0 100 98'
}
render() {
return (
<Vector {...wording} {...this.props}>
<path d="M54,98V43h46V98H54ZM54,0h46V33H54V0ZM0,96.185V65H46V98H0V96.185ZM0,0H46V55H0V0Z" />
</Vector>
)
}
}
export { Dashboard }
export default Dashboard