-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #70 from bleu-fi/joao/click-743-simbolod-e-coracao…
…-e-favoritar External link display option to data table
- Loading branch information
Showing
7 changed files
with
56 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,21 @@ | ||
import React from "react"; | ||
import { cn } from "#/lib/utils"; | ||
|
||
type SectionTitleProps = { | ||
children: React.ReactNode; | ||
className?: string; | ||
}; | ||
|
||
export const SectionTitle: React.FC<SectionTitleProps> = ({ children }) => ( | ||
<h2 className="pt-8 text-2xl font-bold tracking-tigh text-foreground"> | ||
export const SectionTitle: React.FC<SectionTitleProps> = ({ | ||
children, | ||
className, | ||
}) => ( | ||
<h2 | ||
className={cn( | ||
"pt-8 text-2xl font-bold tracking-tigh text-foreground", | ||
className | ||
)} | ||
> | ||
{children} | ||
</h2> | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters