@crossed/ui
Version:
A universal & performant styling library for React Native, Next.js & React
12 lines • 519 B
TypeScript
/**
* Copyright (c) Paymium.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root of this projects source tree.
*/
import { type TextProps } from '../../typography/Text';
import { Text as TextNative } from 'react-native';
type ButtonTextProps = TextProps;
declare const ButtonText: import("react").ForwardRefExoticComponent<Omit<TextProps, "ref"> & import("react").RefAttributes<TextNative>>;
export { ButtonText, type ButtonTextProps };
//# sourceMappingURL=Text.d.ts.map