mirror of
https://github.com/antebudimir/feishin.git
synced 2026-01-02 02:43:33 +00:00
Add favorite/rating table columns
This commit is contained in:
parent
d1dfbaedaa
commit
ab031820f6
12 changed files with 158 additions and 29 deletions
10
src/renderer/components/rating/index.tsx
Normal file
10
src/renderer/components/rating/index.tsx
Normal file
|
|
@ -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} />;
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue