26 lines
548 B
TypeScript
26 lines
548 B
TypeScript
import { createIcon } from '../lib/create-icon'
|
|
|
|
const SvgUnreadIcon = createIcon(props => {
|
|
return (
|
|
<svg
|
|
{...props}
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
width={props.width}
|
|
height={props.height}
|
|
fill="none"
|
|
viewBox="0 0 20 20"
|
|
focusable={false}
|
|
aria-hidden={true}
|
|
>
|
|
<path
|
|
fill={props.color}
|
|
fillRule="evenodd"
|
|
d="M3.5 4.4h13v1.2h-13V4.4Zm2 5h9v1.2h-9V9.4Zm7 5h-5v1.2h5v-1.2Z"
|
|
clipRule="evenodd"
|
|
/>
|
|
</svg>
|
|
)
|
|
})
|
|
|
|
export default SvgUnreadIcon
|