11 lines
547 B
TypeScript
11 lines
547 B
TypeScript
import { SVGProps } from "react";
|
|
const SvgComponent = (props: SVGProps<SVGSVGElement>) => (
|
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
|
|
<path
|
|
fill="currentColor"
|
|
d="M19 3h-1V2c0-.55-.45-1-1-1s-1 .45-1 1v1H8V2c0-.55-.45-1-1-1s-1 .45-1 1v1H5c-1.11 0-1.99.9-1.99 2L3 19a2 2 0 0 0 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2m-1 16H6c-.55 0-1-.45-1-1V8h14v10c0 .55-.45 1-1 1M8 10h3c.55 0 1 .45 1 1v3c0 .55-.45 1-1 1H8c-.55 0-1-.45-1-1v-3c0-.55.45-1 1-1"
|
|
/>
|
|
</svg>
|
|
);
|
|
export { SvgComponent as Calender };
|