Merged in fix/lint-issues (pull request #1678)
Fix lint issues in design-system and scandic-web * Remove unused color prop from LogoAndIllustrationProps to fix lint issues * Fix lint issues in web * Fix logos type Approved-by: Joakim Jäderberg
This commit is contained in:
@@ -7,7 +7,14 @@ export interface IconProps
|
||||
size?: number
|
||||
}
|
||||
|
||||
export interface LogoAndIllustrationProps
|
||||
export interface IllustrationProps
|
||||
extends Omit<React.SVGAttributes<HTMLOrSVGElement>, 'color'>,
|
||||
Omit<VariantProps<typeof iconVariants>, 'color'> {
|
||||
width?: string | number
|
||||
height?: string | number
|
||||
}
|
||||
|
||||
export interface LogoProps
|
||||
extends Omit<React.SVGAttributes<HTMLOrSVGElement>, 'color'>,
|
||||
VariantProps<typeof iconVariants> {
|
||||
width?: string | number
|
||||
|
||||
Reference in New Issue
Block a user