styling groceries a little better
This commit is contained in:
@@ -19,7 +19,7 @@ const SelectAllItemsButton = (props) => {
|
||||
}
|
||||
return (
|
||||
<WrapperSelect toggle={toggleAnim} visible={props.visible} onClick={handlePress}>
|
||||
<CheckIcon />
|
||||
{/* <CheckIcon /> */}
|
||||
</WrapperSelect>
|
||||
)
|
||||
}
|
||||
@@ -34,7 +34,7 @@ const RemoveItemsButton = (props) => {
|
||||
}
|
||||
return (
|
||||
<WrapperRemove toggle={toggleAnim} visible={props.visible} onClick={handlePress}>
|
||||
<RemoveIcon />
|
||||
{/* <RemoveIcon /> */}
|
||||
</WrapperRemove>
|
||||
)
|
||||
}
|
||||
@@ -46,7 +46,7 @@ export const ContainerButtons = (props) => {
|
||||
<SelectAllItemsButton visible={visible} />
|
||||
<RemoveItemsButton visible={visible} />
|
||||
<WrapperButtons toggle={visible} onClick={() => setVisible(!visible)}>
|
||||
<MenuIcon />
|
||||
{/* <MenuIcon /> */}
|
||||
</WrapperButtons >
|
||||
</>
|
||||
)
|
||||
@@ -60,7 +60,7 @@ export const AddItemButton = (props) => {
|
||||
return (
|
||||
<>
|
||||
<WrapperAddItem toggle={visibleItem} onClick={() => setVisibleItem(true)}>
|
||||
<PlusIcon />
|
||||
{/* <PlusIcon /> */}
|
||||
</WrapperAddItem>
|
||||
<ModalAddItem visible={visibleItem} closeModal={() => setVisibleItem(false)} />
|
||||
</>
|
||||
@@ -69,7 +69,7 @@ export const AddItemButton = (props) => {
|
||||
return (
|
||||
<>
|
||||
<WrapperAddList toggle={visibleList} onClick={() => setVisibleList(true)}>
|
||||
<ListIcon />
|
||||
{/* <ListIcon /> */}
|
||||
</WrapperAddList>
|
||||
<ModalAddList visible={visibleList} closeModal={() => setVisibleList(false)} />
|
||||
</>
|
||||
|
||||
Reference in New Issue
Block a user