adds filtering by task status (completion date, incomplete, completion) adds filtering by task metadata (task name, labels, members, due date) adds sorting by task name, labels, members, and due date
13 lines
593 B
TypeScript
13 lines
593 B
TypeScript
import React from 'react';
|
|
import Icon, { IconProps } from './Icon';
|
|
|
|
const Calender: React.FC<IconProps> = ({ width = '16px', height = '16px', className }) => {
|
|
return (
|
|
<Icon width={width} height={height} className={className} viewBox="0 0 448 512">
|
|
<path d="M400 64h-48V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H160V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zm-6 400H54c-3.3 0-6-2.7-6-6V160h352v298c0 3.3-2.7 6-6 6z" />
|
|
</Icon>
|
|
);
|
|
};
|
|
|
|
export default Calender;
|