Skip to content

Commit 6a061b4

Browse files
Merge pull request #1312 from AasthathecoderX/description
Added Description icon
2 parents f51f667 + a6e13bc commit 6a061b4

File tree

3 files changed

+26
-0
lines changed

3 files changed

+26
-0
lines changed
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
import { KEPPEL_GREEN_FILL, DEFAULT_HEIGHT, DEFAULT_WIDTH, DEFAULT_FILL_NONE } from '../../constants/constants';
2+
import { IconProps } from '../types';
3+
4+
const DescriptionIcon = ({
5+
width = DEFAULT_WIDTH,
6+
height = DEFAULT_HEIGHT,
7+
fill = DEFAULT_FILL_NONE,
8+
...props
9+
}: IconProps): JSX.Element => (
10+
<svg
11+
width={width}
12+
height={height}
13+
viewBox="0 0 48 48"
14+
fill={fill}
15+
data-testid="description-icon-svg"
16+
xmlns="http://www.w3.org/2000/svg"
17+
{...props}
18+
>
19+
{/* SVG path data from Material UI Description icon will go here */}
20+
<path d="M8 4h28v40H8z" />
21+
</svg>
22+
);
23+
24+
export default DescriptionIcon;

src/icons/Description/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export { default as DescriptionIcon } from './DescriptionIcon';

src/icons/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ export * from './Dashboard';
2929
export * from './DataObject';
3030
export * from './Delete';
3131
export * from './Deploy';
32+
export * from './Description';
3233
export * from './Designer';
3334
export * from './Detail';
3435
export * from './DropDownIcon';

0 commit comments

Comments
 (0)