
  <script lang="ts">
    
      import '@oicl/openbridge-webcomponents/dist/icons/icon-chart-display-settings-proposal.js';
      import { setProperties } from "../util.js";
      
      import type { Snippet } from 'svelte';

      export interface Props {
     class?: string;
     style?: string;
     useCssColor?: boolean
   }
      export interface Events {
    
  }
      export interface Slots {
  children?: Snippet
}
      const { class: className, style, children, ...props} = $props<Props & Events & Slots>();

    </script>
    <obi-chart-display-settings-proposal
    use:setProperties={props}
    class={className}
    style={style}
     >
      
    {#if children}
      {@render children()}
    {/if}
    </obi-chart-display-settings-proposal>