mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-17 06:00:20 +02:00
Add favorite/rating table columns
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
import { Rating as MantineRating, RatingProps as MantineRatingProps } from '@mantine/core';
|
||||
import styled from 'styled-components';
|
||||
|
||||
type RatingProps = MantineRatingProps;
|
||||
|
||||
const StyledRating = styled(MantineRating)``;
|
||||
|
||||
export const Rating = ({ ...props }: RatingProps) => {
|
||||
return <StyledRating {...props} />;
|
||||
};
|
||||
Reference in New Issue
Block a user