17 lines
330 B
TypeScript
17 lines
330 B
TypeScript
import { styled } from '@/theme';
|
|
|
|
export const ResultsContainer = styled('div', {
|
|
fontSize: '$xl',
|
|
fontWeight: '$bold',
|
|
display: 'flex',
|
|
alignItems: 'center',
|
|
});
|
|
|
|
export const ResultsText = styled('span', {
|
|
color: '$slate12',
|
|
});
|
|
|
|
export const ResultsNumber = styled('span', {
|
|
color: '$slate11',
|
|
});
|