signal-desktop/sticker-creator/elements/Toast.tsx

14 lines
380 B
TypeScript
Raw Normal View History

2019-12-17 20:25:57 +00:00
import * as React from 'react';
import classNames from 'classnames';
2019-12-17 20:25:57 +00:00
import * as styles from './Toast.scss';
export type Props = React.HTMLProps<HTMLButtonElement> & {
children: React.ReactNode;
};
export const Toast = React.memo(({ children, className, ...rest }: Props) => (
<button className={classNames(styles.base, className)} {...rest}>
2019-12-17 20:25:57 +00:00
{children}
</button>
));