forked from sagi/seepur
10 lines
134 B
TypeScript
10 lines
134 B
TypeScript
|
export interface ISidewayText {
|
||
|
class: string;
|
||
|
}
|
||
|
export default {
|
||
|
props: ["text", "bold", "textSize"],
|
||
|
data: () => ({
|
||
|
|
||
|
}),
|
||
|
};
|