mirror of
https://github.com/zoriya/flood.git
synced 2025-12-20 22:25:16 +00:00
15 lines
506 B
JavaScript
15 lines
506 B
JavaScript
import React from 'react';
|
|
|
|
import BaseIcon from './BaseIcon';
|
|
|
|
export default class FolderClosedOutline extends BaseIcon {
|
|
render() {
|
|
return (
|
|
<svg className={`icon icon--directory-outlined ${this.props.className}`}
|
|
xmlns={this.getXmlns()} viewBox={this.getViewBox()}>
|
|
<path d="M48.71,23.45a6.49,6.49,0,0,0-6.37-6.55H23.23V16a6.49,6.49,0,0,0-6.37-6.55H7.76A6.49,6.49,0,0,0,1.39,16V44a6.49,6.49,0,0,0,6.37,6.55H42.34A6.49,6.49,0,0,0,48.71,44V23.45Z"/>
|
|
</svg>
|
|
);
|
|
}
|
|
}
|