@vtex/styleguide
Version:
> VTEX Styleguide React components ([Docs](https://vtex.github.io/styleguide))
16 lines (15 loc) • 377 B
TypeScript
import React from 'react';
import { ObjectOption } from './ObjectAtom';
export declare type VerbOption = {
label: string;
value: string;
object: ObjectOption;
};
declare type Props = {
disabled?: boolean;
verb?: string;
verbOptions: VerbOption[];
onChange: (string: any) => void;
};
declare const VerbAtom: React.FC<Props>;
export default VerbAtom;