File size: 597 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import { createComponent } from "./create-component"

export const FloatAnatomy = createComponent((props) => {
  const { palette, ...rest } = props
  return (
    <svg
      width={400}
      height={300}
      viewBox="0 0 400 300"
      fill="none"
      xmlns="http://www.w3.org/2000/svg"
      {...rest}
    >
      <rect x={148} y={101} width={103} height={97} fill={palette[2]} />
      <rect
        x={232.5}
        y={82.5}
        width={37}
        height={37}
        rx={18.5}
        fill={palette[3]}
        stroke={palette[15]}
        strokeWidth={5}
      />
    </svg>
  )
})