1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-07-06 23:56:13 +02:00
Files
joplin/packages/app-mobile/components/buttons/index.tsx
2024-06-04 09:57:52 +01:00

15 lines
510 B
TypeScript

import * as React from 'react';
import TextButton, { ButtonType, TextButtonProps } from './TextButton';
type Props = Omit<TextButtonProps, 'type'>;
const makeTextButtonComponent = (type: ButtonType) => {
return (props: Props) => {
return <TextButton {...props} type={type} />;
};
};
export const PrimaryButton = makeTextButtonComponent(ButtonType.Primary);
export const SecondaryButton = makeTextButtonComponent(ButtonType.Secondary);
export const LinkButton = makeTextButtonComponent(ButtonType.Link);