Abdallah AlHalees

Results 14 comments of Abdallah AlHalees

Hello Danielle, You can use your own custom icon, here is the [guidelines](https://cloudscape.design/foundation/visual-foundation/iconography/#custom-icons) for creating custom icons, then you can use it in the [Icon](https://cloudscape.design/components/icon/?tabId=api#properties) component by using `url` or...

this works fine with me ```js function CraftEditor = () => { const ref = useRef(null) return ( ) } ``` ```js const html = ref.current.firstChild.firstChild.outerHTML ```

> Do you maybe have a more elaborate example? Like how would I be able to access the ref from a different component? (like an export button) @khusseini if it's...

add this to your webpack config ``` module: { rules: [ { test: /\.(js|jsx)$/, include: [ path.join(__dirname, './app'), path.join(__dirname, './node_modules', 'react-pivot') ], use: babelLoader }, ] } ```

add this to your webpack config ``` module: { rules: [ { test: /\.(js|jsx)$/, include: [ path.join(__dirname, './app'), path.join(__dirname, './node_modules', 'react-pivot') ], use: babelLoader }, ] } ```

> It would be nice to have more information on what this fixes from #1857. From the code it seems like it fixes the style of tables with header, but...

Hi abeatbeyondlab, Our components are only available in React, if your app uses React in the frontend you should be able to use the source code from our demos. e.g....

Our demos are purely client side with some mocked server side demos. From the [supabase React guide](https://supabase.com/docs/guides/getting-started/quickstarts/reactjs) you can use our components in `App.js` as they are in the demos,...

Hello @kkyon, we don't have an example for routing, you can use any react routing library to achieve that. our library does not have any constraints on which method you...

Hello @naveen8801, For `Select` we cannot support this feature as the component only selects one option, for MultiSelect it's possible to achieve this by grouping options in one group, [see...