@rapido/components
Version:
Library of common primitive components used in Rapido apps.
11 lines (10 loc) • 338 B
TypeScript
/**
* Copyright (c) 2019-present Verum Technologies
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
import React from 'react';
import { ButtonProps } from './types';
declare const Button: React.NamedExoticComponent<ButtonProps>;
export default Button;