1
+ import { useUID } from "@twilio-paste/uid-library" ;
1
2
/**
2
3
* This file was automatically generated with @twilio-labs/svg-to-react
3
4
*/
4
- import * as React from 'react' ;
5
- import { useUID } from '@twilio-paste/uid-library' ;
5
+ import * as React from "react" ;
6
6
7
- import { IconWrapper } from ' ./helpers/IconWrapper' ;
8
- import type { IconWrapperProps } from ' ./helpers/IconWrapper' ;
7
+ import { IconWrapper } from " ./helpers/IconWrapper" ;
8
+ import type { IconWrapperProps } from " ./helpers/IconWrapper" ;
9
9
10
10
export interface BlockquoteIconProps extends IconWrapperProps {
11
11
title ?: string ;
12
12
decorative : boolean ;
13
13
}
14
14
15
15
const BlockquoteIcon = React . forwardRef < HTMLElement , BlockquoteIconProps > (
16
- ( { as, display, element = ' ICON' , size, color, title, decorative} , ref ) => {
16
+ ( { as, display, element = " ICON" , size, color, title, decorative } , ref ) => {
17
17
const titleId = `BlockquoteIcon-${ useUID ( ) } ` ;
18
18
19
19
if ( ! decorative && title == null ) {
20
- throw new Error ( ' [BlockquoteIcon]: Missing a title for non-decorative icon.' ) ;
20
+ throw new Error ( " [BlockquoteIcon]: Missing a title for non-decorative icon." ) ;
21
21
}
22
22
23
23
return (
@@ -41,8 +41,8 @@ const BlockquoteIcon = React.forwardRef<HTMLElement, BlockquoteIconProps>(
41
41
</ svg >
42
42
</ IconWrapper >
43
43
) ;
44
- }
44
+ } ,
45
45
) ;
46
46
47
- BlockquoteIcon . displayName = ' BlockquoteIcon' ;
48
- export { BlockquoteIcon } ;
47
+ BlockquoteIcon . displayName = " BlockquoteIcon" ;
48
+ export { BlockquoteIcon } ;
0 commit comments