Skip to content

Commit 6cd1998

Browse files
committed
fixed build errors
Signed-off-by: kishore08-07 <kishorebsm8@gmail.com>
1 parent 7007736 commit 6cd1998

3 files changed

Lines changed: 5 additions & 6 deletions

File tree

src/icons/FilledCircleIcon.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,12 @@ export const FilledCircleIcon: FC<IconProps> = ({
88
...props
99
}) => {
1010
return (
11-
<svg width={width} height={height} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 40">
11+
<svg width={width} height={height} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 40" {...props}>
1212
<path
1313
fillRule="evenodd"
1414
clipRule="evenodd"
1515
d="M11.3661 38.0349C1.40555 33.2661 -2.80363 21.3246 1.96473 11.3628C4.25461 6.57899 8.35082 2.90088 13.3523 1.13757C18.3537 -0.62574 23.8507 -0.329761 28.6338 1.96035C38.5946 6.72929 42.8037 18.6709 38.0351 28.6325C33.2669 38.5944 21.3267 42.804 11.3661 38.0349Z"
1616
fill={fill}
17-
{...props}
1817
/>
1918
</svg>
2019
);

src/icons/Response/Responseicon.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
import { DEFAULT_HEIGHT, DEFAULT_WIDTH } from '../../constants/constants';
22
import { DARK_PRIMARY_COLOR } from '../../theme';
3-
import { IconProps } from '../types';
3+
import { CustomIconProps } from '../types';
44

55
export const ResponseIcon = ({
66
width = DEFAULT_WIDTH,
77
height = DEFAULT_HEIGHT,
88
primaryFill = DARK_PRIMARY_COLOR,
99
...props
10-
}: IconProps): JSX.Element => {
10+
}: CustomIconProps): JSX.Element => {
1111
return (
1212
<svg
1313
xmlns="http://www.w3.org/2000/svg"
@@ -79,4 +79,4 @@ export const ResponseIcon = ({
7979
);
8080
};
8181

82-
// export default FilterIcon;
82+
export default ResponseIcon;

src/icons/Response/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export { default as ResponseIcon } from './responseicon';
1+
export { default as ResponseIcon } from './Responseicon';

0 commit comments

Comments
 (0)