File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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 ) ;
Original file line number Diff line number Diff line change 11import { DEFAULT_HEIGHT , DEFAULT_WIDTH } from '../../constants/constants' ;
22import { DARK_PRIMARY_COLOR } from '../../theme' ;
3- import { IconProps } from '../types' ;
3+ import { CustomIconProps } from '../types' ;
44
55export 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 ;
Original file line number Diff line number Diff line change 1- export { default as ResponseIcon } from './responseicon ' ;
1+ export { default as ResponseIcon } from './Responseicon ' ;
You can’t perform that action at this time.
0 commit comments