Skip to content

Commit

Permalink
feat(blockquote): format blockquote icon
Browse files Browse the repository at this point in the history
  • Loading branch information
PixeledCode committed Nov 21, 2024
1 parent 5fcbcb2 commit e392100
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions packages/paste-icons/src/BlockquoteIcon.tsx
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
import { useUID } from "@twilio-paste/uid-library";
/**
* This file was automatically generated with @twilio-labs/svg-to-react
*/
import * as React from 'react';
import {useUID} from '@twilio-paste/uid-library';
import * as React from "react";

import {IconWrapper} from './helpers/IconWrapper';
import type {IconWrapperProps} from './helpers/IconWrapper';
import { IconWrapper } from "./helpers/IconWrapper";
import type { IconWrapperProps } from "./helpers/IconWrapper";

export interface BlockquoteIconProps extends IconWrapperProps {
title?: string;
decorative: boolean;
}

const BlockquoteIcon = React.forwardRef<HTMLElement, BlockquoteIconProps>(
({as, display, element = 'ICON', size, color, title, decorative}, ref) => {
({ as, display, element = "ICON", size, color, title, decorative }, ref) => {
const titleId = `BlockquoteIcon-${useUID()}`;

if (!decorative && title == null) {
throw new Error('[BlockquoteIcon]: Missing a title for non-decorative icon.');
throw new Error("[BlockquoteIcon]: Missing a title for non-decorative icon.");
}

return (
Expand All @@ -41,8 +41,8 @@ const BlockquoteIcon = React.forwardRef<HTMLElement, BlockquoteIconProps>(
</svg>
</IconWrapper>
);
}
},
);

BlockquoteIcon.displayName = 'BlockquoteIcon';
export {BlockquoteIcon};
BlockquoteIcon.displayName = "BlockquoteIcon";
export { BlockquoteIcon };

0 comments on commit e392100

Please sign in to comment.