We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b4461f3 commit a8b8a28Copy full SHA for a8b8a28
packages/context-drawer/src/ButtonCorner/ButtonCorner.tsx
@@ -5,6 +5,11 @@ import { useDarkMode } from '@leafygreen-ui/leafygreen-provider';
5
import { getFill, getWrapperStyles } from './ButtonCorner.styles';
6
import { Side } from './ButtonCorner.types';
7
8
+/**
9
+ * @returns component that renders the visually rounded sides of the ContextDrawerButton.
10
+ *
11
+ * @internal
12
+ */
13
export const ButtonCorner = ({ side }: { side: Side }) => {
14
const { theme } = useDarkMode();
15
packages/context-drawer/src/index.ts
@@ -1 +1,4 @@
1
-export { ContextDrawerButton, type ContextDrawerButtonProps } from './ContextDrawerButton';
+export {
2
+ ContextDrawerButton,
3
+ type ContextDrawerButtonProps,
4
+} from './ContextDrawerButton';
0 commit comments