Calendar Todo Line icon by Remix Icon in PNG format

Calendar Todo Line

Version 4.2.0
Updated Feb 26, 2024
Similar icons
30
Preview
Calendar Todo Line icon
Color
Frame
Component
IconRiCalendarTodoLine.tsx
import * as React from "react";
// By: ri
// See: https://v0.app/icon/ri/calendar-todo-line
// Example: <IconRiCalendarTodoLine width="24px" height="24px" style={{color: "#000000"}} />
export const IconRiCalendarTodoLine = ({
height = "1em",
fill = "currentColor",
focusable = "false",
...props
}: Omit<React.SVGProps<SVGSVGElement>, "children">) => (
<svg
role="img"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
height={height}
focusable={focusable}
{...props}
>
<path
fill={fill}
d="M9 1v2h6V1h2v2h4a1 1 0 0 1 1 1v16a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h4V1zm11 10H4v8h16zM8 14v2H6v-2zm10 0v2h-8v-2zM7 5H4v4h16V5h-3v2h-2V5H9v2H7z"
/>
</svg>
);