update components and setttings

pull/1671/head
Joseph Izang 3 years ago
parent 158d4416c7
commit 5c86f98e22
  1. 2
      libs/remix-ui/vertical-icons-panel/.babelrc
  2. 12
      libs/remix-ui/vertical-icons-panel/src/lib/components/OtherIcons.tsx
  3. 0
      libs/remix-ui/vertical-icons-panel/src/lib/remix-ui-vertical-icons-panel.module.css

@ -1,4 +1,4 @@
{
"presets": ["@nrwl/react/babel"],
"plugins": []
}
}

@ -1,5 +1,6 @@
/* eslint-disable no-use-before-define */
/* eslint-disable @typescript-eslint/no-unused-vars */
<<<<<<< HEAD
import { VerticalIcons } from 'libs/remix-ui/vertical-icons-panel/types/vertical-icons-panel'
import React from 'react'
import Icon from './Icon'
@ -48,6 +49,17 @@ function OtherIcons ({ verticalIconsPlugin, itemContextAction, addActive, remove
/>
))}
</div>
=======
import React, { ReactNode } from 'react'
interface OtherIconsProps {
children: ReactNode
}
function OtherIcons ({ children }: OtherIconsProps) {
return (
<div id="otherIcons">{ children }</div>
>>>>>>> b6322066e (update components and setttings)
)
}

Loading…
Cancel
Save