|
1 | 1 | import { IconProps } from './arrow-right'; |
2 | 2 |
|
3 | | -export function IconQuoteStart({ style, className }: IconProps) { |
| 3 | +export function IconQuoteStartSingle({ style, className }: IconProps) { |
4 | 4 | return <div style={style} className={className}> |
5 | | - <svg xmlns="http://www.w3.org/2000/svg" width="25" height="15" viewBox="0 0 25 15" fill="none"> |
6 | | - <path d="M20 5H15V10H20V5Z" fill="#ED168F" /> |
7 | | - <path d="M25 5H20V10H25V5Z" fill="#ED168F" /> |
8 | | - <path d="M20 0H15V5H20V0Z" fill="#ED168F" /> |
9 | | - <path d="M10 5H5V15H10V5Z" fill="#ED168F" /> |
10 | | - <path d="M20 10H15V15H20V10Z" fill="#ED168F" /> |
11 | | - <path d="M25 10H20V15H25V10Z" fill="#ED168F" /> |
12 | | - <path d="M5 5H0V10H5V5Z" fill="#ED168F" /> |
13 | | - <path d="M5 0H0V5H5V0Z" fill="#ED168F" /> |
14 | | - <path d="M5 10H0V15H5V10Z" fill="#ED168F" /> |
| 5 | + <svg xmlns="http://www.w3.org/2000/svg" width="10" height="15" viewBox="0 0 10 15" fill="none"> |
| 6 | + <path d="M5 5V0H0V5V10V15H5H10V5H5Z" fill="#ED168F" /> |
15 | 7 | </svg> |
16 | 8 | </div>; |
17 | 9 | } |
18 | 10 |
|
19 | | -export function IconQuoteEnd({ style, className }: IconProps) { |
| 11 | +export function IconQuoteStart({ style, className }: IconProps) { |
| 12 | + return <div style={{ |
| 13 | + display: 'flex', |
| 14 | + gap: 5, |
| 15 | + ...style |
| 16 | + }}> |
| 17 | + <IconQuoteStartSingle /> |
| 18 | + <IconQuoteStartSingle /> |
| 19 | + </div>; |
| 20 | +} |
| 21 | + |
| 22 | +export function IconQuoteEndSingle({ style, className }: IconProps) { |
20 | 23 | return <div style={style} className={className}> |
21 | | - <svg xmlns="http://www.w3.org/2000/svg" width="25" height="15" viewBox="0 0 25 15" fill="none"> |
22 | | - <path d="M5 10H10V5H5V10Z" fill="#ED168F" /> |
23 | | - <path d="M-9.53674e-07 10H5V5H-9.53674e-07V10Z" fill="#ED168F" /> |
24 | | - <path d="M5 15H10V10H5V15Z" fill="#ED168F" /> |
25 | | - <path d="M15 10H20V0H15V10Z" fill="#ED168F" /> |
26 | | - <path d="M5 5H10V0H5V5Z" fill="#ED168F" /> |
27 | | - <path d="M-9.53674e-07 5H5V0H-9.53674e-07V5Z" fill="#ED168F" /> |
28 | | - <path d="M20 10H25V5H20V10Z" fill="#ED168F" /> |
29 | | - <path d="M20 15H25V10H20V15Z" fill="#ED168F" /> |
30 | | - <path d="M20 5H25V0H20V5Z" fill="#ED168F" /> |
| 24 | + <svg xmlns="http://www.w3.org/2000/svg" width="10" height="15" viewBox="0 0 10 15" fill="none"> |
| 25 | + <path d="M5 0H0V5V10H5V15H10V10V5V0H5Z" fill="#ED168F" /> |
31 | 26 | </svg> |
32 | 27 | </div>; |
33 | 28 | } |
| 29 | + |
| 30 | + |
| 31 | +export function IconQuoteEnd({ style, className }: IconProps) { |
| 32 | + return <div style={{ |
| 33 | + display: 'flex', |
| 34 | + justifyContent: 'flex-end', |
| 35 | + gap: 5, |
| 36 | + ...style |
| 37 | + }}> |
| 38 | + <IconQuoteEndSingle /> |
| 39 | + <IconQuoteEndSingle /> |
| 40 | + </div>; |
| 41 | +} |
0 commit comments