Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions src/icons/AssignmentTurnedIn/AssignmentTurnedInIcon.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
import { DEFAULT_FILL_NONE, DEFAULT_HEIGHT, DEFAULT_WIDTH } from '../../constants/constants';
import { IconProps } from '../types';

export const AssignmentTurnedInIcon = ({
width = DEFAULT_WIDTH,
height = DEFAULT_HEIGHT,
fill = DEFAULT_FILL_NONE,
...props
}: IconProps): JSX.Element => {
return (
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
width={width}
height={height}
{...props}
>
<path fill={fill} d="M19 3h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm-2 14l-4-4 1.41-1.41L10 14.17l6.59-6.59L18 9l-8 8z" />
</svg>
);
};

export default AssignmentTurnedInIcon;
1 change: 1 addition & 0 deletions src/icons/AssignmentTurnedIn/index.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default as AssignmentTurnedInIcon } from './AssignmentTurnedInIcon';
1 change: 1 addition & 0 deletions src/icons/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ export * from './ArrowDropDown';
export * from './ArrowExpand';
export * from './ArrowUpward';
export * from './Article';
export * from './AssignmentTurnedIn';
export * from './Barchart';
export * from './Bell';
export * from './BuildRounded';
Expand Down
Loading