mirror of
https://github.com/Sonny93/my-links.git
synced 2025-12-08 14:43:24 +00:00
9 lines
159 B
TypeScript
9 lines
159 B
TypeScript
import styled from '@emotion/styled';
|
|
|
|
const Legend = styled.span(({ theme }) => ({
|
|
fontSize: '13px',
|
|
color: theme.colors.grey,
|
|
}));
|
|
|
|
export default Legend;
|