mirror of
https://github.com/Sonny93/my-links.git
synced 2025-12-08 22:53:25 +00:00
11 lines
159 B
TypeScript
11 lines
159 B
TypeScript
import styled from '@emotion/styled';
|
|
|
|
const TabList = styled.ul({
|
|
padding: 0,
|
|
margin: 0,
|
|
display: 'flex',
|
|
listStyle: 'none',
|
|
});
|
|
|
|
export default TabList;
|