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 13e00d8 commit b0bc0dbCopy full SHA for b0bc0db
src/renderer/components/primitives/Footer.tsx
@@ -1,16 +1,16 @@
1
import { Box, Stack } from '@primer/react';
2
import type { FC, ReactNode } from 'react';
3
4
-interface FooterProps {
+interface IFooter {
5
children: ReactNode;
6
- justify: 'end' | 'space-between' | 'start' | 'center';
+ justify: 'end' | 'space-between';
7
}
8
9
/**
10
* Footer component displays actions at the bottom of the page.
11
* It is fixed to the viewport bottom.
12
*/
13
-export const Footer: FC<FooterProps> = ({ children, justify }) => {
+export const Footer: FC<IFooter> = ({ children, justify }) => {
14
return (
15
<Box className="left-sidebar bg-gitify-footer">
16
<Stack direction="horizontal" justify={justify} padding="condensed">
0 commit comments