Skip to content

Commit

Permalink
Merge pull request #2371 from saithsab877/Remove-delete-icon
Browse files Browse the repository at this point in the history
[Blueprint] Remove `Delete Icon` from Graph View
  • Loading branch information
Rassl authored Oct 27, 2024
2 parents f9edbc4 + 97dabc7 commit a8c7e66
Showing 1 changed file with 2 additions and 8 deletions.
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
import styled from 'styled-components'
import { Flex } from '~/components/common/Flex'
import { colors } from '~/utils/colors'
import PlusIcon from '~/components/Icons/PlusIcon'
import CreateEdgeIcon from '~/components/Icons/CreateEdgeIcon'
import DeleteIcon from '~/components/Icons/DeleteIcon'
import PlusIcon from '~/components/Icons/PlusIcon'
import { colors } from '~/utils/colors'

type Props = {
onCreateNew: () => void
Expand All @@ -22,11 +21,6 @@ export const Toolbar = ({ onCreateNew, onAddEdgeNode }: Props) => (
<CreateEdgeIcon />
</IconWrapper>
</ActionButton>
<ActionButton disabled>
<IconWrapper>
<DeleteIcon />
</IconWrapper>
</ActionButton>
</Wrapper>
)

Expand Down

0 comments on commit a8c7e66

Please sign in to comment.