diff --git a/src/components/Container.ts b/src/components/Container.ts index 88e183559..ba7c35257 100644 --- a/src/components/Container.ts +++ b/src/components/Container.ts @@ -62,3 +62,11 @@ export const FlexWrapper = styled.div` text-align: center; justify-content: center; `; + +export const HighLightWrapper = styled.div` + &:hover { + background-color: #555; + } + border-radius: 50%; + padding: 5px; +`; diff --git a/src/components/icons/CrossIcon.tsx b/src/components/icons/CrossIcon.tsx index bee5baeb2..18eb9c333 100644 --- a/src/components/icons/CrossIcon.tsx +++ b/src/components/icons/CrossIcon.tsx @@ -1,18 +1,21 @@ +import { HighLightWrapper } from 'components/Container'; import React from 'react'; -export default function DateIcon(props) { +export default function CrossIcon(props) { return ( - - - + + + + + ); } -DateIcon.defaultProps = { +CrossIcon.defaultProps = { height: 24, width: 24, viewBox: '0 0 24 24', diff --git a/src/components/icons/EditIcon.tsx b/src/components/icons/EditIcon.tsx index ea96a862e..19a719e14 100644 --- a/src/components/icons/EditIcon.tsx +++ b/src/components/icons/EditIcon.tsx @@ -1,15 +1,18 @@ +import { HighLightWrapper } from 'components/Container'; import React from 'react'; export default function AddIcon(props) { return ( - - - + + + + + ); } diff --git a/src/components/icons/TickIcon.tsx b/src/components/icons/TickIcon.tsx index 8bd76968f..8d230b961 100644 --- a/src/components/icons/TickIcon.tsx +++ b/src/components/icons/TickIcon.tsx @@ -1,15 +1,18 @@ +import { HighLightWrapper } from 'components/Container'; import React from 'react'; export default function TickIcon(props) { return ( - - - + + + + + ); }