lbry-desktop/ui/modal/modalSocialShare/view.jsx
Rave | 図書館猫 20ff660cb2
Minor design fixes in modals (#1711)
* Minor design fixes in modals

* Adjust button icon color
2022-06-20 13:51:57 +02:00

29 lines
742 B
JavaScript

// @flow
import React from 'react';
import { Modal } from 'modal/modal';
import SocialShare from 'component/socialShare';
import Card from 'component/common/card';
type Props = {
closeModal: () => void,
uri: string,
webShareable: boolean,
collectionId?: number,
};
class ModalSocialShare extends React.PureComponent<Props> {
render() {
const { closeModal, uri, webShareable, collectionId } = this.props;
return (
<Modal isOpen onAborted={closeModal} type="card">
<Card
className="card--share"
title={__('Share')}
actions={<SocialShare uri={uri} webShareable={webShareable} collectionId={collectionId} />}
/>
</Modal>
);
}
}
export default ModalSocialShare;