feat: create tab and selector components

This commit is contained in:
Sonny
2024-06-02 01:22:53 +02:00
committed by Sonny
parent e9ccefd938
commit 8e1e3bea17
14 changed files with 335 additions and 43 deletions

View File

@@ -0,0 +1,10 @@
import styled from '@emotion/styled';
const TabList = styled.ul({
padding: 0,
margin: 0,
display: 'flex',
listStyle: 'none',
});
export default TabList;