mirror of
https://github.com/jeffvli/feishin.git
synced 2024-11-20 14:37:06 +01:00
Set outline color for rating component
This commit is contained in:
parent
2ab48f5c97
commit
cf904b5d51
@ -3,7 +3,13 @@ import styled from 'styled-components';
|
||||
|
||||
type RatingProps = MantineRatingProps;
|
||||
|
||||
const StyledRating = styled(MantineRating)``;
|
||||
const StyledRating = styled(MantineRating)`
|
||||
& .mantine-Rating-symbolBody {
|
||||
svg {
|
||||
stroke: var(--main-fg-secondary);
|
||||
}
|
||||
}
|
||||
`;
|
||||
|
||||
export const Rating = ({ ...props }: RatingProps) => {
|
||||
return <StyledRating {...props} />;
|
||||
|
Loading…
Reference in New Issue
Block a user