From c77c58e18143233be042c4980a6ed08ae9beac52 Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Mon, 16 May 2022 19:40:23 +0200 Subject: chore: adjust and complete missing styles * add logo to topics pages and links * add Prism styles to articles * and a few other adjustements --- src/components/organisms/widgets/sharing.tsx | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'src/components/organisms/widgets/sharing.tsx') diff --git a/src/components/organisms/widgets/sharing.tsx b/src/components/organisms/widgets/sharing.tsx index 85dadb0..c63f5db 100644 --- a/src/components/organisms/widgets/sharing.tsx +++ b/src/components/organisms/widgets/sharing.tsx @@ -22,6 +22,10 @@ export type SharingData = { }; export type SharingProps = { + /** + * Set additional classnames to the sharing links list. + */ + className?: string; /** * The page data to share. */ @@ -46,6 +50,7 @@ export type SharingProps = { * Render a list of sharing links inside a widget. */ const Sharing: FC = ({ + className = '', data, media, expanded = true, @@ -201,7 +206,7 @@ const Sharing: FC = ({ return ( -
    {getItems()}
+
    {getItems()}
); }; -- cgit v1.2.3