Skip to content

Commit e392100

Browse files
committed
feat(blockquote): format blockquote icon
1 parent 5fcbcb2 commit e392100

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

packages/paste-icons/src/BlockquoteIcon.tsx

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
1+
import { useUID } from "@twilio-paste/uid-library";
12
/**
23
* This file was automatically generated with @twilio-labs/svg-to-react
34
*/
4-
import * as React from 'react';
5-
import {useUID} from '@twilio-paste/uid-library';
5+
import * as React from "react";
66

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";
99

1010
export interface BlockquoteIconProps extends IconWrapperProps {
1111
title?: string;
1212
decorative: boolean;
1313
}
1414

1515
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) => {
1717
const titleId = `BlockquoteIcon-${useUID()}`;
1818

1919
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.");
2121
}
2222

2323
return (
@@ -41,8 +41,8 @@ const BlockquoteIcon = React.forwardRef<HTMLElement, BlockquoteIconProps>(
4141
</svg>
4242
</IconWrapper>
4343
);
44-
}
44+
},
4545
);
4646

47-
BlockquoteIcon.displayName = 'BlockquoteIcon';
48-
export {BlockquoteIcon};
47+
BlockquoteIcon.displayName = "BlockquoteIcon";
48+
export { BlockquoteIcon };

0 commit comments

Comments
 (0)