Skip to content

Commit 4151d50

Browse files
Applied the changes
Signed-off-by: AasthathecoderX <bhat.aasthaa@gmail.com>
1 parent 53c3484 commit 4151d50

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

src/icons/Description/DescriptionIcon.tsx

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
import { KEPPEL_GREEN_FILL, DEFAULT_HEIGHT, DEFAULT_WIDTH } from '../../constants/constants';
1+
import { KEPPEL_GREEN_FILL, DEFAULT_HEIGHT, DEFAULT_WIDTH, DEFAULT_FILL_NONE } from '../../constants/constants';
22
import { IconProps } from '../types';
33

44
const DescriptionIcon = ({
55
width = DEFAULT_WIDTH,
66
height = DEFAULT_HEIGHT,
7-
fill = KEPPEL_GREEN_FILL,
7+
fill = DEFAULT_FILL_NONE,
88
...props
99
}: IconProps): JSX.Element => (
1010
<svg
@@ -17,9 +17,7 @@ const DescriptionIcon = ({
1717
{...props}
1818
>
1919
{/* SVG path data from Material UI Description icon will go here */}
20-
{/* Example paths based on Material UI icon structure */}
2120
<path d="M8 4h28v40H8z" />
22-
{/* Additional path elements as needed */}
2321
</svg>
2422
);
2523

0 commit comments

Comments
 (0)