mirror of
https://github.com/FranP-code/spend-ia.git
synced 2025-10-13 00:14:09 +00:00
49 lines
1.0 KiB
TypeScript
49 lines
1.0 KiB
TypeScript
import React from 'react';
|
|
import { tabs } from './data';
|
|
import { type Tab } from '@/lib/types';
|
|
import styled from 'styled-components';
|
|
|
|
export const Header = ({
|
|
tab,
|
|
setTab,
|
|
}: {
|
|
tab: Tab;
|
|
setTab: React.Dispatch<React.SetStateAction<Tab>>;
|
|
}): JSX.Element => {
|
|
return (
|
|
<TabsContainer>
|
|
{tabs.map((tabData) => (
|
|
<StyledTab
|
|
active={tab.id === tabData.id}
|
|
key={tabData.id}
|
|
onClick={() => {
|
|
setTab(tabData);
|
|
}}
|
|
>
|
|
<h3>{tabData.title}</h3>
|
|
</StyledTab>
|
|
))}
|
|
</TabsContainer>
|
|
);
|
|
};
|
|
|
|
const TabsContainer = styled.div`
|
|
background: #635985;
|
|
display: flex;
|
|
`;
|
|
|
|
const StyledTab = styled.div<{
|
|
active: boolean;
|
|
}>`
|
|
background: ${({ active }) => (active ? '#443C68' : '#635985')};
|
|
padding: 12px 0px;
|
|
text-align: center;
|
|
transition: 0.2s ease-in-out all;
|
|
user-select: none;
|
|
width: 100%;
|
|
:hover {
|
|
filter: ${({ active }) => !active && 'brightness(90%)'};
|
|
transition: 0.2s ease-in-out all;
|
|
}
|
|
`;
|