design-system-silkhaus 2.15.1 → 2.16.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -932,6 +932,19 @@ export declare interface ScrollbarProps extends Props {
932
932
 
933
933
  export declare const SECURITY_DEPOSIT_REFUND = "security_deposit_refund";
934
934
 
935
+ export declare const SegmentedControl: FC<SegmentedControlProps>;
936
+
937
+ export declare type SegmentedControlProps = {
938
+ segments: {
939
+ label: string;
940
+ value: string;
941
+ icon?: React.ReactNode;
942
+ }[];
943
+ className?: string;
944
+ value?: string;
945
+ onChange?: (value: string) => void;
946
+ };
947
+
935
948
  export declare const Select: FC<SelectProps>;
936
949
 
937
950
  export declare enum SelectionStateEnum {