Files
vf_react/boilerplate-chakra-pro-main/theme/components/link.ts
2025-11-22 11:41:56 +08:00

25 lines
359 B
TypeScript

export const linkStyles = {
components: {
Link: {
baseStyle: {
textDecoration: 'none',
boxShadow: 'none',
_focus: {
boxShadow: 'none'
},
_active: {
boxShadow: 'none'
},
_hover: {
textDecoration: 'none',
border: 'none'
}
},
_hover: {
textDecoration: 'none',
border: 'none'
}
}
}
};