refactor(logo): Update main logo SVG to use currentColor
The main logo SVG has been replaced with an updated version. The previous logo had hardcoded fill colors, making it difficult to adapt to different color schemes, such as light and dark modes. The new SVG uses `fill="currentColor"`, which allows its color to be controlled via the parent element's CSS `color` property. This makes the logo easily themeable and more flexible for use throughout the application.
This commit is contained in:
@@ -8,4 +8,5 @@ export const FormErrorMessages = {
|
||||
max: (value: number | string) => `This field must be at most ${value}`,
|
||||
invalidEmail: "Email address is invalid",
|
||||
alphaNumeric: "This field can only contain letters and numbers",
|
||||
invalidPattern: "This field does not match the required pattern",
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user