Skip to content

Commit b0bc0db

Browse files
committed
refactor: layout components
Signed-off-by: Adam Setch <[email protected]>
1 parent 13e00d8 commit b0bc0db

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/renderer/components/primitives/Footer.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
import { Box, Stack } from '@primer/react';
22
import type { FC, ReactNode } from 'react';
33

4-
interface FooterProps {
4+
interface IFooter {
55
children: ReactNode;
6-
justify: 'end' | 'space-between' | 'start' | 'center';
6+
justify: 'end' | 'space-between';
77
}
88

99
/**
1010
* Footer component displays actions at the bottom of the page.
1111
* It is fixed to the viewport bottom.
1212
*/
13-
export const Footer: FC<FooterProps> = ({ children, justify }) => {
13+
export const Footer: FC<IFooter> = ({ children, justify }) => {
1414
return (
1515
<Box className="left-sidebar bg-gitify-footer">
1616
<Stack direction="horizontal" justify={justify} padding="condensed">

0 commit comments

Comments
 (0)