mirror of
https://github.com/movie-web/native-app.git
synced 2025-09-13 13:03:26 +00:00
15 lines
384 B
TypeScript
15 lines
384 B
TypeScript
import { Progress, styled, withStaticProperties } from "tamagui";
|
|
|
|
const MWProgressFrame = styled(Progress, {
|
|
backgroundColor: "$progressBackground",
|
|
});
|
|
|
|
const MWProgressIndicator = styled(Progress.Indicator, {
|
|
backgroundColor: "$progressFilled",
|
|
animation: "bounce",
|
|
});
|
|
|
|
export const MWProgress = withStaticProperties(MWProgressFrame, {
|
|
Indicator: MWProgressIndicator,
|
|
});
|