Files
my-links/inertia/components/common/legend.tsx
2024-10-07 01:33:59 +02:00

9 lines
159 B
TypeScript

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