Skip to content

Commit 08ee778

Browse files
committed
add IndeterminateCheckBox Icon
Signed-off-by: Bhumika Garg <bhumikatech2024@gmail.com>
1 parent 857e3a3 commit 08ee778

File tree

3 files changed

+27
-0
lines changed

3 files changed

+27
-0
lines changed
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
import { DEFAULT_HEIGHT, DEFAULT_WIDTH, DEFAULT_FILL_NONE } from '../../constants/constants';
2+
import { IconProps } from '../types';
3+
4+
export const IndeterminateCheckBoxIcon = ({
5+
width = DEFAULT_WIDTH,
6+
height = DEFAULT_HEIGHT,
7+
fill = DEFAULT_FILL_NONE,
8+
...props
9+
}: IconProps): JSX.Element => {
10+
return (
11+
<svg
12+
width={width}
13+
height={height}
14+
xmlns="http://www.w3.org/2000/svg"
15+
viewBox="0 0 24 24"
16+
{...props}
17+
>
18+
<path
19+
d="M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2m-2 10H7v-2h10z"
20+
fill={fill}
21+
/>
22+
</svg>
23+
);
24+
};
25+
export default IndeterminateCheckBoxIcon;
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export { default as IndeterminateCheckBoxIcon } from './IndeterminateCheckBoxIcon';

src/icons/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@ export * from './Group';
7979
export * from './GroupAdd';
8080
export * from './HelpIcon';
8181
export * from './Idea';
82+
export * from './IndeterminateCheckBox';
8283
export * from './InfoOutlined';
8384
export * from './InviteUser';
8485
export * from './Kanvas';

0 commit comments

Comments
 (0)