Files
my-links/inertia/components/common/legend.tsx
2024-07-22 12:10:47 +02:00

9 lines
161 B
TypeScript

import styled from '@emotion/styled';
const Legend = styled.span(({ theme }) => ({
fontSize: '13px',
color: theme.colors.grey,
}));
export default Legend;