mirror of
https://github.com/Sonny93/my-links.git
synced 2025-12-08 14:43:24 +00:00
13 lines
189 B
TypeScript
13 lines
189 B
TypeScript
import styled from '@emotion/styled';
|
|
|
|
const UnstyledList = styled.ul({
|
|
'&, & li': {
|
|
listStyleType: 'none',
|
|
margin: 0,
|
|
padding: 0,
|
|
border: 0,
|
|
},
|
|
});
|
|
|
|
export default UnstyledList;
|