Skip to content

Commit

Permalink
fixing footers and headers
Browse files Browse the repository at this point in the history
  • Loading branch information
jake-figma committed Jun 9, 2024
1 parent 2151703 commit 0cf8fab
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions src/ui/components/Footers/Footers.figma.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
import { figma } from "@figma/code-connect";
import { Footer } from "./Footers";

figma.connect(Footer, "<FIGMA_URL_FOOTER>");
4 changes: 2 additions & 2 deletions src/ui/components/Footers/Footers.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ import {
type SectionProps,
} from "ui";

export type StandardFooterProps = Omit<SectionProps, "variant" | "padding">;
export function StandardFooter({ className, ...props }: StandardFooterProps) {
export type FooterProps = Omit<SectionProps, "variant" | "padding">;
export function Footer({ className, ...props }: FooterProps) {
return (
<Section
elementType="footer"
Expand Down

0 comments on commit 0cf8fab

Please sign in to comment.