init commit
This commit is contained in:
11
remotion/node_modules/@remotion/studio/dist/components/SegmentedControl.d.ts
generated
vendored
Normal file
11
remotion/node_modules/@remotion/studio/dist/components/SegmentedControl.d.ts
generated
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
import React from 'react';
|
||||
export type SegmentedControlItem = {
|
||||
label: React.ReactNode;
|
||||
onClick: () => void;
|
||||
key: string;
|
||||
selected: boolean;
|
||||
};
|
||||
export declare const SegmentedControl: React.FC<{
|
||||
readonly items: SegmentedControlItem[];
|
||||
readonly needsWrapping: boolean;
|
||||
}>;
|
||||
Reference in New Issue
Block a user