* feat(BOOK-117): Added aria-label to Scandic Friends levels * feat(BOOK-117): Added aria-label to hotel logos * feat(BOOK-117): Added alt text to app download images * feat(BOOK-117): Added same logo component to footer as the one in the header * feat(BOOK-117): Added aria attributes to icons similar to how we handled MaterialIcon aria attributes Approved-by: Bianca Widstam Approved-by: Matilda Landström
60 lines
1.4 KiB
TypeScript
60 lines
1.4 KiB
TypeScript
import type { NucleoIconProps } from '../../icon'
|
|
import { getNucleoIconProps } from '../utils'
|
|
|
|
function PalmTree2(props: NucleoIconProps) {
|
|
const { fill, strokewidth, ...iconProps } = getNucleoIconProps(props)
|
|
|
|
return (
|
|
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" {...iconProps}>
|
|
<g
|
|
fill={fill}
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
transform="translate(0.25 0.25)"
|
|
>
|
|
<path
|
|
d="M11.4,23a21.14,21.14,0,0,0,1.594-8.059A21.111,21.111,0,0,0,11,6"
|
|
fill="none"
|
|
stroke={fill}
|
|
strokeWidth={strokewidth}
|
|
/>
|
|
<path
|
|
d="M4,15l7-9C6,6,2,9,4,15Z"
|
|
fill="none"
|
|
stroke={fill}
|
|
strokeWidth={strokewidth}
|
|
/>
|
|
<path
|
|
d="M21,12,11,6S20,2,21,12Z"
|
|
fill="none"
|
|
stroke={fill}
|
|
strokeWidth={strokewidth}
|
|
/>
|
|
<path
|
|
d="M11,6,3,5S7-1,11,6Z"
|
|
fill="none"
|
|
stroke={fill}
|
|
strokeWidth={strokewidth}
|
|
/>
|
|
<path
|
|
d="M11,6l9-3S11.971-2.161,11,6Z"
|
|
fill="none"
|
|
stroke={fill}
|
|
strokeWidth={strokewidth}
|
|
/>
|
|
<line
|
|
fill="none"
|
|
stroke={fill}
|
|
strokeWidth={strokewidth}
|
|
x1="1"
|
|
x2="23"
|
|
y1="23"
|
|
y2="23"
|
|
/>
|
|
</g>
|
|
</svg>
|
|
)
|
|
}
|
|
|
|
export default PalmTree2
|