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

export const BlockquoteAnatomy = 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={85} y={112} width={6} height={67} fill={palette[3]} />
      <rect x={108} y={116} width={207} height={10} fill={palette[2]} />
      <rect x={108} y={140} width={207} height={10} fill={palette[2]} />
      <rect x={142} y={164} width={173} height={10} fill={palette[2]} />
      <line x1={107} y1={168.5} x2={131} y2={168.5} stroke={palette[3]} />
    </svg>
  )
})