We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
As discussed in this Slack thread, the OramaSearchButton component has an issue with a duplicate themeConfig object.
OramaSearchButton
themeConfig
Current Example (Incorrect):
import { OramaSearchButton } from '@orama/react-components'; <OramaSearchButton size="large" colorScheme="dark" themeConfig={{ themeConfig: { colors: { dark: { '--background-color-primary': '#231102' }, }, }, }} > Search something... </OramaSearchButton>
Corrected Version:
import { OramaSearchButton } from '@orama/react-components'; <OramaSearchButton size="large" colorScheme="dark" themeConfig={{ colors: { dark: { '--background-color-primary': '#231102', }, }, }} > Search something... </OramaSearchButton>
The extra themeConfig nesting is unnecessary and should be removed for proper configuration.
The text was updated successfully, but these errors were encountered:
I can push the change if you agree.
Sorry, something went wrong.
No branches or pull requests
As discussed in this Slack thread, the
OramaSearchButton
component has an issue with a duplicatethemeConfig
object.Current Example (Incorrect):
Corrected Version:
The extra
themeConfig
nesting is unnecessary and should be removed for proper configuration.The text was updated successfully, but these errors were encountered: