Fix quote styles so they are uniform
This commit is contained in:
parent
8a765da6a3
commit
48aaf9e4f3
5 changed files with 3 additions and 43 deletions
|
@ -145,10 +145,6 @@ const createProps = (overrideProps: Partial<Props> = {}): Props => ({
|
|||
? overrideProps.text
|
||||
: 'A sample message from a pal'
|
||||
),
|
||||
withContentAbove: boolean(
|
||||
'withContentAbove',
|
||||
overrideProps.withContentAbove || false
|
||||
),
|
||||
});
|
||||
|
||||
story.add('Outgoing by Another Author', () => {
|
||||
|
@ -196,19 +192,6 @@ story.add('Incoming/Outgoing Colors', () => {
|
|||
);
|
||||
});
|
||||
|
||||
story.add('Content Above', () => {
|
||||
const props = createProps({
|
||||
withContentAbove: true,
|
||||
});
|
||||
|
||||
return (
|
||||
<>
|
||||
<div>Content Above</div>
|
||||
<Quote {...props} />
|
||||
</>
|
||||
);
|
||||
});
|
||||
|
||||
story.add('Image Only', () => {
|
||||
const props = createProps({
|
||||
text: '',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue