Skip to content

Commit

Permalink
0.2.40
Browse files Browse the repository at this point in the history
Add bgColor to LoadingIndicator on root provider only.
  • Loading branch information
hyochan committed Oct 23, 2024
1 parent 4ed88c6 commit b4bf2dd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion lib/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dooboo-ui",
"version": "0.2.39",
"version": "0.2.40",
"main": "index",
"react-native": "index",
"module": "index",
Expand Down
1 change: 1 addition & 0 deletions main/providers/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ function AppProvider({children}: {children: JSX.Element}): JSX.Element {
align-self: stretch;
flex: 1;
justify-content: center;
background-color: ${themeContext.theme.bg.basic};
`}
/>
) : (
Expand Down
4 changes: 1 addition & 3 deletions main/uis/LoadingIndicator/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,7 @@ type Props = {
customElement?: JSX.Element | (() => JSX.Element);
};

const Container = styled.View`
background-color: ${({theme}) => theme.bg.basic};
`;
const Container = styled.View``;

export function LoadingIndicator({
customElement,
Expand Down

0 comments on commit b4bf2dd

Please sign in to comment.